-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsequentialSearch.cpp
60 lines (54 loc) · 1.06 KB
/
sequentialSearch.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
54
55
56
57
58
59
60
#include <iostream>
using namespace std;
void input(int a[],int &n)
{
cin>>n;
for(int i=0;i<n;i++)
cin>>a[i];
}
int linearSearch(int a[], int n, int x)
{
for(int i=0; i<n; i++)
if(a[i]==x) return i;
return -1;
}
// độ phức tạp (O(2n)) vì phải so sánh 2 lần (a[i] với x và i với n)
int linearSearch2(int a[], int n, int x)
{
int i=0;
while((a[i]!=x) && (i<n) )
{
i++;
}
return i;
}
// độ phức tạp(O(n+1)) vì tạo thêm 1 phần tử a[n]
int linearSearch3(int a[], int n, int x)
{
int i=0;
a[n]=x;//guard
while((a[i]!=x))
{
i++;
}
return i;
}
int linearSearch4(int a[], int n, int x)
{
int i=0;
a[n]=x; //cũng dùng kĩ thuật guard chỉ khác ver 3 là khi không tìm ra x sẽ trả về -1
while(x!=a[i])
{
i++;
if(i<n) return i;
}
return -1;
}
int main()
{
int a[100],n,x;
input(a,n);
cin>>x;
cout<< linearSearch(a,n,x);
return 0;
}