数据结构实验报告 折半查找.doc
折半查找 代码 #include #include typedef struct{ int *elem; int length; }sstable; int searchbin(sstable ST,int key) { int low,high,mid; low=1;high=ST.length; while(low
下载地址
用户评论