-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBubbleSorted.cpp
More file actions
39 lines (38 loc) · 957 Bytes
/
BubbleSorted.cpp
File metadata and controls
39 lines (38 loc) · 957 Bytes
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
#include <iostream>
#include <algorithm>
#include <vector>
using namespace std;
class BubbleSort
{
public:
void sort(vector<int>& arr) // time complexity is O(n^2)
{
bool check = false;
for (size_t i = 0; i < arr.size() - 1; i++)
{
for (size_t j = 0; j < arr.size() - i-1; j++)
{
if (arr.at(j) > arr.at(j + 1))
{
swap(arr[j], arr[j + 1]);
check = true;
}
}
if (!check) // making this algoriithm adaptive by checking the conditon in 1st pass. In adaptive case, time complexity will be O(n)
break;
}
}
};
int main()
{
vector<int> arr{2, 36, 1, 0, 2};
BubbleSort sorting;
sorting.sort(arr);
cout << "[";
for (auto i : arr)
{
cout << i << " ";
}
cout << "]" << endl;
return 0;
}