查找算法:順序查找

順序查找的算法的程序代碼很簡單,在c語言中只須要編寫一個循環,將數組中各元素依次與待查找的目標數進行比較便可。順序查找算法的示例代碼以下:web #include<stdio.h> #include<stdlib.h> #include<time.h> #define N 15 int SearchFun(int *a,int n,int target)//a爲序列數組,n爲數組長度,target
相關文章
相關標籤/搜索