顺序搜索算法

#include <iostream>

using namespace std;

//顺序搜索算法
template<class Type>
int seqSearch(Type *a, int n, Type k)
{
     for(int i=0;i<n;i++)
	  if (a[i]==k) return i;
     return -1;
}

int main()
{

    int a[]={4,3,2,1,5,6,7,9,0,8};
    int len=sizeof(a)/sizeof(int);
    int res=seqSearch(a,len,3);
    res++;
    cout << res << endl;
    return 0;
}



 

你可能感兴趣的:(顺序搜索算法)