Write the definition of the function template seqSearch to implement the sequential search on a vector object.
templateint seqSearch(const vector &list, const elemType& item);//If item is found in the list, returns the//position of the item in the list; otherwise, returns -1.
Also, write a program to test the function seqSearch . Use the function push_back to insert elements in the vector object.
We need at least 10 more requests to produce the solution.
0 / 10 have requested this problem solution
The more requests, the faster the answer.