C++实现数据结构中的折半查找法举例

//二分查找的C++实现 #include "stdafx.h" #include <iostream> using namespace std; #define MAXL 100 typedef int KeyType; typedef char InfoType[10]; typedef struct { KeyType key;                //KeyType为关键字的数据
相关文章
相关标签/搜索