-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
123 lines (119 loc) · 3.38 KB
/
Program.cs
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
using System;
namespace Algorithm_sophomore
{
class Program
{
static void Main(string[] args)
{
Console.Write("Nhap n: ");
int n = int.Parse(Console.ReadLine());
Console.Write("Ban muon random so lon nhat la bao nhieu?: ");
int max = int.Parse(Console.ReadLine());
Console.Write("Ban muon so phan tu trong mang la bao nhieu?: ");
int len = int.Parse(Console.ReadLine());
MyIntArray a = new MyIntArray(len);
a.RandomArray(max);
Array.Sort(a.Mang);
a.OutputArray();
if (a.FindContent(n) == -1)
{
Console.WriteLine("\nKhong tim thay gia tri can tim!");
}
else
{
Console.WriteLine($"\nTim thay {n} o vi tri i = {a.FindContent(n)}");
}
Console.WriteLine($"So lan thuc hien so sanh tuan tu la: {a.CountLinearSearchSteps(n)}");
Console.WriteLine($"So lan thuc hien so sanh nhi phan la: {a.CountBinarySearchSteps(n)}");
}
}
class MyIntArray
{
private int[] array;
public int[] Mang
{
get => this.array;
set { this.array = value; }
}
public MyIntArray(int n = 8)
{
Mang = new int[n];
}
public int this[int i]
{
get => array[i];
set => array[i] = value;
}
public void Input()
{
string[] tk = Console.ReadLine().Split();
for(int i = 0; i<array.Length;i++)
{
array[i] = int.Parse(tk[i]);
}
}
public void RandomArray(int max)
{
for (int i = 0; i < Mang.Length; i++)
{
Random x = new Random();
Mang[i] = x.Next(max);
}
}
public void OutputArray()
{
Console.WriteLine("KET QUA MANG:");
for (int i = 0; i < Mang.Length; i++)
{
Console.Write(Mang[i] + " ");
}
}
public int FindContent(int x)
{
for (int i = 0; i < Mang.Length; i++)
{
if (Mang[i] == x)
{
return i + 1;
}
}
return -1;
}
public int CountLinearSearchSteps(int number_being_find)
{
for (int i = 0; i < Mang.Length; i++)
{
if (Mang[i] == number_being_find)
{
return i + 1;
}
}
return Mang.Length;
}
public int CountBinarySearchSteps(int number_being_find)
{
int left = 0;
int right = Mang.Length - 1;
int mid;
int found = 0;
while (left <= right)
{
mid = (left + right) / 2;
found++;
if (Mang[mid] == number_being_find)
{
break;
}
else if (number_being_find < Mang[mid])
{
right = mid - 1;
}
else if (number_being_find > Mang[mid])
{
left = mid + 1;
}
}
return found;
}
}
}