-
Notifications
You must be signed in to change notification settings - Fork 153
/
Copy pathbubbleSort.cpp
53 lines (40 loc) · 957 Bytes
/
bubbleSort.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
/*
* @author : imkaka
* @date : 1/2/2019
*
*/
#include<iostream>
#include<vector>
using namespace std;
void bubblesort(vector<int>& arr){
int N = arr.size();
bool swapped;
for(int i = 0; i < N-1; ++i){
swapped = false; // Optimizing part
for(int j = 0; j < N-i-1; ++j) // (j, j+1) Adjacent Swap.
if(arr[j] > arr[j+1]){ // Swap Part
int temp = arr[j];
arr[j] = arr[j+1];
arr[j+1] = temp;
swapped = true;
}
if(!swapped)
break;
}
}
void printArray(const vector<int> &arr){
int N = arr.size();
for(const int x : arr){
cout << x << " ";
}
cout << endl;
}
int main(){
vector<int> arr = {20, 10, 0, 36, 100, 12, -20, 30, 50, -100};
cout << "Unsorted:" << endl;
printArray(arr);
bubblesort(arr);
cout << "Sorted: " << endl;
printArray(arr);
return 0;
}