數據結構: 順序查找

有哨兵順序查找數組 意思就是將數組a[0]存下要查找的數,從數組的尾巴開始查找,若順序查找函數返回的是非0值就表明查找成功,不然查找失敗。 函數 #include<stdio.h> int Sequence_search(int *a,int n, int key); int main() { int a[10]; int i = 1; int key = 0;
相關文章
相關標籤/搜索