代码搜索:binary
找到约 10,000 项符合「binary」的源代码
代码结果 10,000
www.eeworm.com/read/418735/10931179
class binary.class
www.eeworm.com/read/272934/10936035
c binary.c
www.eeworm.com/read/417462/10988638
c binary.c
#include
int binary_search(int array[], int value, int size)
{
int found = 0;
int high = size, low = 0, mid;
mid = (high + low) / 2;
printf("\n\nLooking for %d\n", v
www.eeworm.com/read/271450/10994236
cpp binary.cpp
//: C12:Binary.cpp
// From Thinking in C++, 2nd Edition
// Available at http://www.BruceEckel.com
// (c) Bruce Eckel 1999
// Copyright notice in Copyright.txt
// Overloading binary operators
www.eeworm.com/read/470800/6908613
cpp binary.cpp
// binary.cpp -- binary file I/O
#include // not required by most systems
#include
#include
#include // (or stdlib.h) for exit()
inline void eatline()
www.eeworm.com/read/470800/6908901
cpp binary.cpp
// binary.cpp -- binary file I/O
#include // not required by most systems
#include
#include
#include // (or stdlib.h) for exit()
inline void eatline()
www.eeworm.com/read/469626/6972235
h binary.h
#ifndef _binary_h_
#define _binary_h_
inline int indexedBinaryToInt(char *x, int *index, int n)
{
int val;
int *idx;
int *indexN;
val=0;
indexN = index+n;
for (idx=index; idx
www.eeworm.com/read/469138/6978168
txt 堆(binary).txt
//二分堆(binary)
//可插入,获取并删除最小(最大)元素,复杂度均O(logn)
//可更改元素类型,修改比较符号或换成比较函数
#define MAXN 10000
#define _cp(a,b) ((a)
www.eeworm.com/read/468329/6996637
cpp binary.cpp
// binary.cpp -- binary file I/O
#include // not required by most systems
#include
#include
#include // (or stdlib.h) for exit()
inline void eatline()
www.eeworm.com/read/189342/7114959
c binary.c
#include
int binary_search(int array[], int value, int size)
{
int found = 0;
int high = size, low = 0, mid;
mid = (high + low) / 2;
printf("\n\nLooking for %d\n", v