数据结构 查找基本操作代码.docx
《数据结构 查找基本操作代码.docx》由会员分享,可在线阅读,更多相关《数据结构 查找基本操作代码.docx(3页珍藏版)》请在三一办公上搜索。
1、数据结构 查找基本操作代码实验六 查找 /顺序查找和二分查找 #include stdio.h #include stdlib.h #define N 20 typedef struct int Key; ElemType; typedef struct SSTable ElemType *elem; int length; SSTable; int Search_Seq(SSTable ST,int Key) int i; ST.elem0.Key=Key; for(i=ST.length;ST.elemi.Key!=Key;i-); return i; int Search_Bin(SST
2、able ST,int Key) int low=1; int high=ST.length; int i,mid; while(low=high) mid=(low+high)/2; if(ST.elemmid.Key=Key) return mid; else if(KeyST.elemmid.Key) high=mid-1; else low=mid+1; return 0; void main SSTable ST; ST.elem=(ElemType *)malloc(N*sizeof(ElemType); if(!ST.elem) exit(0); int len; printf(
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 数据结构 查找基本操作代码 查找 基本 操作 代码
链接地址:https://www.31ppt.com/p-3560103.html