forked from atul14357/Hacktoberfest1435
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsort.cpp
More file actions
38 lines (38 loc) · 665 Bytes
/
sort.cpp
File metadata and controls
38 lines (38 loc) · 665 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
#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; int right=n-1;
while (left<right)
{
while (arr[left] == 0 && left<right)
{
left++;
}
while (arr[right] == 1 && left<right)
{
right--;
}
if(left<right)
{
swap(arr[left],arr[right]);
left++;
right--;
}
}
}
int main()
{
int arr[8]={1,0,1,0,0,1,1,0};
sortone(arr,8);
printarray(arr,8);
return 0;
}