查找(顺序查找、折半查找和二叉排序树的查找与插入)

查找 1、静态查找(Static Search Table) 顺序查找的存储结构 typedef struct { int key; //关键字 }ElemType; typedef struct { ElemType *elem; //数据元素存储空间基址 int length; //表长度 顺序查找(Sequential Search) //顺序查找 int Search_Seq(S
相关文章
相关标签/搜索