Example
Input = {0, 1, 1, 0, 1, 2, 1, 2, 0, 0, 0, 1};
Output = {0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 2, 2}
Algorithm
The problem is similar to our old post Segregate 0s and 1s in an array, and both of these problems are variation of famous Dutch national flag problem.
The problem was posed with three colours, here `0′, `1′ and `2′. The array is divided into four sections:
1. a[1..Lo-1] zeroes (red)
2. a[Lo..Mid-] ones (white)
3. a[Mid..Hi] unknown
4. a[Hi+1..N] twos (blue)
The unknown region is shrunk while maintaining these conditions
1. Lo := 1; Mid := 1; Hi := N;
2. while Mid <= Hi do
1. Invariant: a[1..Lo-1]=0 and a[Lo..Mid-1]=1 and a[Hi+1..N]=2; a[Mid..Hi] are unknown.
2. case a[Mid] in
* 0: swap a[Lo] and a[Mid]; Lo++; Mid++
* 1: Mid++
* 2: swap a[Mid] and a[Hi]; Hi–
— Dutch National Flag Algorithm, or 3-way Partitioning —
Part way through the process, some red, white and blue elements are known and are in the “right” place. The section of unknown elements, a[Mid..Hi], is shrunk by examining a[Mid]:
|
0 0 0 1 1 1 ? ? ? ? 2 2 2
^ ^ ^
| | |
Lo Mid Hi
Examine a[Mid]. There are three possibilities: a[Mid] is (0) red, (1) white or (2) blue.
Case (0) a[Mid] is red, swap a[Lo] and a[Mid]; Lo++; Mid++
0 0 0 0 1 1 1 ? ? ? 2 2 2
^ ^ ^
| | |
Lo Mid Hi
Case (1) a[Mid] is white, Mid++
0 0 0 1 1 1 1 ? ? ? 2 2 2
^ ^ ^
| | |
Lo Mid Hi
Case (2) a[Mid] is blue, swap a[Mid] and a[Hi]; Hi–
0 0 0 1 1 1 ? ? ? 2 2 2 2
^ ^ ^
| | |
Lo Mid Hi
Continue until Mid>Hi.
program:
#include
/* Function to swap *a and *b */
void swap(int *a, int *b);
void sort012(int a[], int arr_size)
{
int lo = 0;
int hi = arr_size - 1;
int mid = 0;
while(mid <= hi)
{
switch(a[mid])
{
case 0:
swap(&a[lo++], &a[mid++]);
break;
case 1:
mid++;
break;
case 2:
swap(&a[mid], &a[hi--]);
break;
}
}
}
/* UTILITY FUNCTIONS */
void swap(int *a, int *b)
{
int temp = *a;
*a = *b;
*b = temp;
}
/* Utility function to print array arr[] */
void printArray(int arr[], int arr_size)
{
int i;
for (i = 0; i < arr_size; i++)
printf("%d ", arr[i]);
printf("\n");
}
/* driver program to test */
int main()
{
int arr[] = {0, 1, 1, 0, 1, 2, 1, 2, 0, 0, 0, 1};
int arr_size = sizeof(arr)/sizeof(arr[0]);
int i;
sort012(arr, arr_size);
printf("array after segregation ");
printArray(arr, arr_size);
getchar();
return 0;
}
4 comments :
Output Ananlysis
when case 0: low=0 mid=0
when case 1: mid=2
when case 1: mid=3
when case 0: low=1 mid=3
when case 1: mid=5
when case 2: mid=5 high=11
when case 1: mid=6
when case 1: mid=7
when case 2: mid=7 high=10
when case 0: low=2 mid=7
when case 0: low=3 mid=8
when case 0: low=4 mid=9
array after segregation 0 0 0 0 0 1 1 1 1 1 2 2
#include
#define MAX 11
// Solution seed by Sandy Grace, NN Priya, Vaishnavi, Prabhakar Dhandapani
// Nurtured, Manured, Weeded, Harvested by Sridhar Arumugasamy
void main( void ) {
int arr[MAX] = {0,1,2,0,1,2,0,1,2,0,1},ctr,stop;
for ( ctr = 0 ; ctr < MAX ; ctr++ )
stop= arr[ctr] > 3 ? (arr[ arr[ ctr] % 3 ] += 3) : (arr[arr[ctr]] += 3) ;
stop = arr[2] / 3;
for ( ctr = MAX ; ctr >= MAX - stop ; ctr-- ) arr[ctr] = 2 ;
stop += arr[1] / 3 ;
for ( ; ctr >= MAX - stop ; ctr -- ) arr[ctr] = 1;
for( ; ctr > -1 ; ctr-- ) arr[ ctr ] = 0 ;
}
#include
#define MAX 11
// Solution seed by Sandy Grace, NN Priya, Vaishnavi, Prabhakar Dhandapani
// Nurtured, Manured, Weeded, Harvested by Sridhar Arumugasamy
void main( void ) {
int arr[MAX] = {0,1,2,0,1,2,0,1,2,0,1},ctr,stop;
for ( ctr = 0 ; ctr < MAX ; ctr++ )
stop= arr[ctr] > 3 ? (arr[ arr[ ctr] % 3 ] += 3) : (arr[arr[ctr]] += 3) ;
stop = arr[2] / 3;
for ( ctr = MAX ; ctr >= MAX - stop ; ctr-- ) arr[ctr] = 2 ;
stop += arr[1] / 3 ;
for ( ; ctr >= MAX - stop ; ctr -- ) arr[ctr] = 1;
for( ; ctr > -1 ; ctr-- ) arr[ ctr ] = 0 ;
}
Post a Comment