查找(順序查找、折半查找和二叉排序樹的查找與插入)

查找 1、靜態查找(Static Search Table) 順序查找的存儲結構 typedef struct { int key; //關鍵字 }ElemType; typedef struct { ElemType *elem; //數據元素存儲空間基址 int length; //表長度 順序查找(Sequential Search) //順序查找 int Search_Seq(S
相關文章
相關標籤/搜索