摘要: 一、顺序查找 1.无哨兵 int SequentailSearch(StaticTable* Tbl, ElemenType k) { int i; for (i = Tbl->Length; i > 0 && Element[i] != k; i--);//数组0元素不保存数据 return i; 阅读全文
posted @ 2021-11-09 00:39 Grit_L。 阅读(47) 评论(0) 推荐(0) 编辑