数据结构实验报告---折半查找(共2页).docx
《数据结构实验报告---折半查找(共2页).docx》由会员分享,可在线阅读,更多相关《数据结构实验报告---折半查找(共2页).docx(2页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
精选优质文档-倾情为你奉上折半查找:代码:#include#includetypedef structint *elem;int length;sstable;int searchbin(sstable ST,int key)int low,high,mid;low=1;high=ST.length;while(low=high)mid=(low+high)/2;if(key=ST.elemmid) return(mid);else if(keyST.elemmid)high=mid-1;else low=mid+1;return(0);void main()int i,key,location;sstable ST; ST.elem=(int*)malloc(ST.length*sizeof(int);printf(请输入表的长度:n);scanf(%d,&ST.length);printf(请输入待查找表中的元素:n);for(i=1;i=ST.length;i+)scanf(%d,&ST.elemi);printf(请输入要查找的元素:n);scanf(%d,&key);location=searchbin(ST,key);printf(要查找的元素的位置为:%dn,location);运行结果:见下页。专心-专注-专业
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 数据结构 实验 报告 折半 查找
限制150内