-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlab7b3.c
More file actions
66 lines (57 loc) · 1.39 KB
/
lab7b3.c
File metadata and controls
66 lines (57 loc) · 1.39 KB
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
61
62
63
64
65
#include<stdio.h>
int main()
{
int n;
printf("nhap so nguyen trong khoang tu 0 den 1000:");
scanf("%d", &n);
int a[n];
printf("nhap phan tu thu %d cua mang: \n",n);
for(int i=0; i < n; i++)
{
printf("phan tu thu %d: ", i );
scanf("%d", &a[i]);
}
//sapxep
for(int i = 0; i < n-1;i++)
{
for(int j = i+1; j< n; j++)
{
if(a[i] > a[j])
{
int temp = a[i];
a[i]= a[j];
a[j] = temp;
}
}
}
for(int i =0; i<n;i++)
{
printf("%d ", a[i]);
}
//socantim
int t;
printf("\n nhap so can tim la: ");
scanf("%d", &t);
int left = 0, right = n-1;
int found = 0;//bien kiem tra
while(left < right)
{
int mid = left+(right - left)/2;
if(a[mid] == t)
{
found = 1;
printf("so %d co ton tai trong mang va xuat hien dau tien o vi tri %d\n", t, mid );
break;
} else
if(a[mid]<t)
{
left = mid +1;
}else
right = mid - 1;
}
if(!found)
{
printf("so %d khong ton tai trong mang \n", t);
}
return 0;
}