-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenudriven.cpp
126 lines (125 loc) · 2.07 KB
/
menudriven.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
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
124
125
126
#include<iostream>
using namespace std;
template <class T>
class sorting
{
T arr[40];
int size;
public:
void input();
void bubble();
void selection();
void insertion();
void display();
};
template<class T>
void sorting<T>:: input()
{
do
{
cout << "Enter size (size must be between 1-10): ";
cin >> size;
if (size > 10 || size < 1)
cout << " You entered wrong size...\nEnter again...\n";
}
while (size > 10 || size < 1);
cout << "Enter array elements :";
for (int i = 0;i < size;i++)
cin >> arr[i];
}
template<class T>
void sorting<T>:: bubble()
{
int temp;
for (int i = 0;i < size; i++)
{
for (int j = 0; j < size - 1 - i;j++)
{
if (arr[j+1] < arr[j])
{
temp = arr[j+1];
arr[j+1] = arr[j];
arr[j] = temp;
}
}
}
}
template<class T>
void sorting<T>:: insertion()
{
int pivot, i, j;
for (i = 1;i < size;i++)
{
pivot = arr[i];;
j = i - 1;
while (j >= 0 && arr[j] > pivot)
{
arr[j+1] = arr[j];
j--;
}
arr[j+1] = pivot;
}
}
template<class T>
void sorting<T>:: selection()
{
int small, pos, temp;
int i, j;
for (i = 0;i < size;i++)
{
small = arr[i];
pos = i;
for (j = i + 1;j < size;j++)
{
if (arr[j] < small)
{
small = arr[j];
pos = j;
}
}
temp = arr[i];
arr[i] = arr[pos];
arr[pos] = temp;
}
}
template<class T>
void sorting<T>::display()
{
cout << "Contents :";
for (int i = 0;i < size;i++)
cout << " " << arr[i];
}
int main()
{
sorting<int> s;
int choice;
char ch;
do
{
s.input();
cout << "Menu\n1.Bubble sort\n2.Insertion sort\n3.Selection sort";
cout << "\nEnter your choice(1-3) :";
cin >> choice;
switch (choice)
{
case 1:
s.bubble();
s.display();
break;
case 2:
s.insertion();
s.display();
break;
case 3:
s.selection();
s.display();
break;
default:
cout << "\nWrong input...\nEnter correct choice...";
}
cout << "\nDo you want to continue?(Y/N)?";
cin >> ch;
}
while (ch == 'y' || ch == 'Y');
return 0;
}