VOOZH about

URL: https://www.geeksforgeeks.org/dsa/positive-elements-at-even-and-negative-at-odd-positions-relative-order-not-maintained/

⇱ Positive elements at even and negative at odd positions (Relative order not maintained) - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Positive elements at even and negative at odd positions (Relative order not maintained)

Last Updated : 18 Jul, 2022

You have been given an array and you have to make a program to convert that array such that positive elements occur at even numbered places in the array and negative elements occur at odd numbered places in the array. We have to do it in place.

There can be unequal number of positive and negative values and the extra values have to left as it is.

Examples:  

Input : arr[] = {1, -3, 5, 6, -3, 6, 7, -4, 9, 10}
Output : arr[] = {1, -3, 5, -3, 6, 6, 7, -4, 9, 10}

Input : arr[] = {-1, 3, -5, 6, 3, 6, -7, -4, -9, 10}
Output : arr[] = {3, -1, 6, -5, 3, -7, 6, -4, 10, -9}

The idea is to use Hoare's partition process of Quick Sort
We take two pointers positive and negative. We set the positive pointer at start of the array and the negative pointer at 1st position of the array. 

We move positive pointer two steps forward till it finds a negative element. Similarly, we move negative pointer forward by two places till it finds a positive value at its position. 

If the positive and negative pointers are in the array then we will swap the values at these indexes otherwise we will stop executing the process.

Implementation:


Output
1 -3 5 -3 6 6 7 -4 9 10 

Time Complexity: O(n2), 
Auxiliary Space: O(1)

Lets explain the working of the code on the first example  arr[] = {1, -3, 5, 6, -3, 6, 7, -4, 9, 10}  We declare two variables positive and negative positive points to zeroth position and negative points to first position  positive = 0 negative = 1  In the first iteration positive will move 4 places to fifth position as a[4] is less than zero and positive = 4.  Negative will move 2 places and will point to fourth position as a[3]>0  we will swap positive and negative position values as they are less than size of array.  After first iteration the array becomes arr[] = {1, -3, 5, -3, 6, 6, 7, -4, 9, 10} Now positive points at fourth position and negative points at third position  In second iteration the positive value will move 6 places and its value will  more than the size of the array. The negative pointer will move two steps forward and it will point to 5th position  As the positive pointer value becomes greater than the array size we will not perform any swap operation and break out of the while loop.  The final output will be  arr[] = {1, -3, 5, -3, 6, 6, 7, -4, 9, 10}

An example where relative order is not maintained: 
{ -1, -2, -3, -4, -5, 6, 7, 8 }; 

Another Approach :- 
The idea is to find a positive/negative element which is in incorrect place(i.e. positive at odd and negative at even place) and the then find the element of opposite sign which is also in incorrect position in the remaining array and then swap these two elements. 

Here is the implementation of the above idea.  


Output
1 -3 5 6 -3 6 7 -4 9 10 
1 -3 5 -3 6 6 7 -4 9 10 

Time Complexity: O(n2),
Auxiliary Space: O(1)

Comment
Article Tags: