代码搜索:binarysearch
找到约 312 项符合「binarysearch」的源代码
代码结果 312
www.eeworm.com/read/425257/10366546
swf flash_ch9_binarysearch.swf
www.eeworm.com/read/280892/10281847
zip 二分查找binarysearch.zip
www.eeworm.com/read/188512/8532622
cpp fig20_04.cpp
// Fig 20.4: Fig20_04.cpp
// BinarySearch test program.
#include
using std::cin;
using std::cout;
using std::endl;
#include "BinarySearch.h" // class BinarySearch definition
int
www.eeworm.com/read/197407/7998339
cpp indlist1.cpp
// test indirect list binary search
#include
#include "indlist1.h"
void main(void)
{
IndirectList L(9);
L.Insert(0,9).Insert(0,8).Insert(0,7).Insert(0,6);
L.Ins
www.eeworm.com/read/208576/15243729
cpp fig20_04.cpp
// Fig 20.4: Fig20_04.cpp
// BinarySearch test program.
#include
using std::cin;
using std::cout;
using std::endl;
#include "BinarySearch.h" // class BinarySearch definition
int
www.eeworm.com/read/471193/6898981
cpp 1335.cpp
#include
#include
#include
#include
#include
#include
using namespace std;
class item{
public:
string s;
int n;
item(){}
www.eeworm.com/read/386886/8720162
cpp 折半查找.cpp
#include
const int N=20;
int a[N]={0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19};
int BinarySearch(int x)
{ /*在有序表a[N]中折半查找其关键字等于x的元素,若找到,则函数值为该元素在表中的位置*/
int low=0,high=N-1;
www.eeworm.com/read/272894/10936808
dpr ex.dpr
program Ural_1196(Input, Output);
const
MaxN = 15000;
type
TIndex = Longint;
TData = Longint;
TList = array[1..MaxN] of TData;
var
N, M, Count: TIndex;
A: TList;
fu
www.eeworm.com/read/272894/10936818
dpr ex.dpr
program Ural_1064(Input, Output);
const
MaxN = 10000;
type
TIndex = Longint;
TRange = array[1..MaxN] of record
Left, Right: TIndex;
end;
var
F: TRange;
function
www.eeworm.com/read/466099/7044557
java binarysearchapp.java
//------------------------------------------------------------------------------
//Programmer: Jun Cui
//Date: 08.05.2008
//Assignment: IT214 Java Lab 6
//Software: Netbeans IDE 6.0
//