-
Notifications
You must be signed in to change notification settings - Fork 0
/
Ricerca_Dicotomica_-_2.cpp
79 lines (56 loc) · 1.29 KB
/
Ricerca_Dicotomica_-_2.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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
// Ricerca Dicotomica.cpp
# include <iostream>
# include <cstdlib>
# include <ctime>
using namespace std;
int main()
{
int v[100], inizio, fine, medio, ricercato, posizione, temp, k;
bool flag;
srand ((unsigned) time(NULL));
cout << endl;
for (int i=0; i<100; i++)
{
v[i]=rand()%300+1;
cout << v[i] << " ";
}
flag=true;
k=1;
while (flag)
{
flag=false;
for(int j=0; j<100-k; j++)
{
if(v[j]>v[j+1])
{
temp=v[j];
v[j]=v[j+1];
v[j+1]=temp;
flag=true;
}
}
k++;
}
cout << endl << endl;
for (int i=0; i<100; i++)
{
cout << i+1 << "." << v[i] << " ";
}
cout << endl << endl << endl << "Inserire il valore da ricercare : ";
cin >> ricercato;
inizio=0;
fine=99;
flag=false;
while (inizio<=fine && !flag)
{
medio=(inizio+fine)/2;
if (v[medio]==ricercato) { flag=true; posizione=medio+1; }
else if (v[medio]<ricercato) inizio=medio+1;
else fine=medio-1;
}
if (flag) cout << endl << "Il valore " << ricercato << " si trova nella posizione " << posizione;
else cout << endl << "Il valore " << ricercato << " non e\' presente";
cout << endl << endl << endl;
system("PAUSE");
return 0;
}