-
Notifications
You must be signed in to change notification settings - Fork 0
/
search-element.cpp
53 lines (42 loc) · 944 Bytes
/
search-element.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
//{ Driver Code Starts
#include<bits/stdc++.h>
using namespace std;
// } Driver Code Ends
class Solution{
public:
// Function to search x in arr
// arr: input array
// X: element to be searched for
int search(int arr[], int N, int X)
{
// Your code here
for(int i=0;i<N;i++){
if(arr[i]==X){
return i;
}
}
return -1;
}
};
//{ Driver Code Starts.
int main()
{
int testcases;
cin>>testcases;
while(testcases--)
{
int sizeOfArray;
cin>>sizeOfArray;
int arr[sizeOfArray];
int x;
for(int i=0;i<sizeOfArray;i++)
{
cin>>arr[i];
}
cin>>x;
Solution ob;
cout<<ob.search(arr,sizeOfArray,x)<<endl; //Linear search
}
return 0;
}
// } Driver Code Ends