forked from SandeepanM2003/cpp_python_codes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsort01.cpp
83 lines (74 loc) · 1.37 KB
/
sort01.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
#include <iostream>
using namespace std;
void print(int arr[], int n)
{
for(int i=0; i<n; i++)
{
cout<<arr[i]<< " ";
}
cout<<endl;
}
void sort01(int arr[], int n)
{
int left=0, right=n-1;
while(left<right)
{
while(arr[left]==0)
{
left++;
}
while(arr[right]==1)
{
right--;
}
if(arr[left]==1 && arr[right]==0 && left< right)
{
swap(arr[left], arr[right]);
left++;
right--;
}
}
}
//Adding one more method
int main()
{
int arr[8] = {1,1,0,1,0,0,0,1};
sort01(arr, 8);
print(arr, 8);
return 0;
}
#include <iostream>
using namespace std;
void print(int arr[], int n)
{
for(int i = 0; i < n; i++)
{
cout << arr[i] << " ";
}
cout << endl;
}
void sort01(int arr[], int n)
{
int low = 0, mid = 0, high = n - 1;
while(mid <= high)
{
switch(arr[mid])
{
case 0:
swap(arr[low], arr[mid]);
low++;
mid++;
break;
case 1:
mid++;
break;
}
}
}
int main()
{
int arr[8] = {1, 1, 0, 1, 0, 0, 0, 1};
sort01(arr, 8);
print(arr, 8);
return 0;
}