日期:2014-05-18 浏览次数:20706 次
int SeqSearch(int arr[], int len, int target) { arr[0]=target; int i = len; while(arr[i]!= target) i--; return i; }