-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSort-01.cpp
More file actions
46 lines (33 loc) · 752 Bytes
/
Sort-01.cpp
File metadata and controls
46 lines (33 loc) · 752 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
40
41
42
43
44
45
46
#include<iostream>
using namespace std;
void printArray(int arr[], int n) {
for(int i=0; i<n; i++) {
cout << arr[i] << " ";
}
cout << endl;
}
void sortOne(int arr[], int n) {
int left = 0, right = n-1;
while(left < right) {
while(arr[left] == 0 && left < right ) {
left++;
}
while(arr[right]==1 && left < right){
right--;
}
//agar yha pohoch gye ho, iska matlab
//arr[left]==1 and arr[right]==0
if(left<right)
{
swap(arr[left], arr[right]);
left++;
right--;
}
}
}
int main() {
int arr[8] = {1,1,0,0,0,0,1,0};
sortOne(arr, 8);
printArray(arr, 8);
return 0;
}