【數據結構做業六a】創建一個順序表,用順序查找、折半查找的方法對其實施查找

#include <iostream> using namespace std; #define MAXSIZE 50 typedef int KeyType; typedef struct{ KeyType key; }ElemType; typedef struct{ ElemType *R; int length; }SSTable; bool CreateList(SSTable &
相關文章
相關標籤/搜索