-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathalgos.cpp
78 lines (51 loc) · 1.92 KB
/
algos.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
#include<bits/stdc++.h>
using namespace std;
int main(){
int a[] = { 1, 5, 8, 9, 6, 7, 3, 4, 2, 0 };
int n = sizeof(a) / sizeof(a[0]);
vector<int> vect{ 101, 19, 30, 199 };
// Sorting
cout << "Before Sorting : " << endl;
for (int i = 0; i < n; i++)
cout << a[i] << " ";
cout << endl;
sort(a, a + n);
cout << "After Sorting : " << endl;
for (int i = 0; i < n; i++)
cout << a[i] << " ";
cout << endl;
cout << "Before Sorting : " << endl;
for (int x : vect)
cout << x << " ";
cout << endl;
sort(vect.begin(), vect.end());
cout << "After Sorting : " << endl;
for (int x : vect)
cout << x << " ";
cout << endl;
cout << "Descending Order : " << endl;
sort(vect.begin(), vect.end(), greater<int>());
for (int x : vect)
cout << x << " ";
cout << endl;
// Searching
int a[] = { 1, 5, 8, 9, 6, 7, 3, 4, 2, 0 };
vector<int> vect{ 101, 19, 30, 199 };
sort(vect.begin(), vect.end());
cout<< "Binary Search 19 in the vector : " << binary_search(vect.begin(), vect.end(), 19) << endl;
cout<< "Binary Search 20 in the vector : " << binary_search(vect.begin(), vect.end(), 20) << endl;
sort(a, a + n);
cout<< "Binary Search 5 in the array : " << binary_search(a, a+n, 5) << endl;
// Max and Min
int x = 3, y = 5;
cout << "Max between x, y : " << max(x,y) << endl;
cout << "Min between x, y : " << min(x,y) << endl;
cout << "Maximum element in the vector : " << *max_element(vect.begin(), vect.end()) << endl;
cout << "Minimum element in the vector : " << *min_element(vect.begin(), vect.end()) << endl;
cout << "Sum of the elements from position 0 : " << accumulate(vect.begin(), vect.end(), 0) << endl;
cout << "Swap x and y : " << endl;
swap(x, y);
cout << "X = " << x << endl;
cout << "Y = " << y << endl;
return 0;
}