c++實現順序查找

程序代碼以下:ios #include<iostream> using namespace std; int SequentialSearch(int *a, int lengh, int key) { for(int i = 0 ; i < lengh ; i++) { if(a[i] == key) return i; }
相關文章
相關標籤/搜索