VOOZH about

URL: https://www.geeksforgeeks.org/dsa/rearrange-positive-negative-numbers-using-inbuilt-sort-function/

⇱ Rearrange positive and negative numbers using inbuilt sort function - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Rearrange positive and negative numbers using inbuilt sort function

Last Updated : 1 Mar, 2023

Given an array of positive and negative numbers, arrange them such that all negative integers appear before all the positive integers in the array without using any additional data structure like a hash table, arrays, etc. The order of appearance should be maintained.

Examples:

Input : arr[] = [12, 11, -13, -5, 6, -7, 5, -3, -6]
Output : arr[] = [-13, -5, -7, -3, -6, 12, 11, 6, 5]

Input : arr[] = [-12, 11, 0, -5, 6, -7, 5, -3, -6]
Output : arr[] = [-12, -5, -7, -3, -6, 0, 11, 6, 5]

Previous Approaches: Some approaches have already been discussed here. They were implemented at best.

Approach 3: There is another method to do so. In c++ STL, There is an inbuilt function std::sort(). We can modify the comp() function to obtain the desired result. As we have to place negative numbers first and then positive numbers. We also have to keep zero's(if present) between positive and negative numbers.

The comp() function in this code rearranges the given array in the required order. Here in bool comp(int a, int b), if integer 'a' is of j-th index and integer 'b' is of i-th index elements in the arr[], then j>i. comp() function will be called in this way. If the comp() return true then swap will be done.

Implementation:


Output
 -12 -13 -5 -7 -3 -6 11 6 5

Time complexity is the same as sorting i.e. O(n log n). As we are using the standard sort function. But it is really faster because the inbuilt sort function uses introsort.
Auxiliary Space: O(1), as no extra space is used

Approach 4: There is yet another method to solve this problem. We recursively traverse the array cutting it into two halves (array[start..start] & array[(start + 1)..end], and keep on splitting the array till we reach the last element. Then we start merging it back. The idea is to, at any point, keep the array in the proper sequence of negative and positive integers. 

The merging logic would be:

  1. If the array[start] is negative, merge the rest of the array as it is so that the negative numbers' order is maintained. The reason for this is that since we are tracing back from the recursive calls, we start moving right to left through the array, thus, naturally maintaining the original sequence.
  2.  If the array[start] is positive, merge the rest of the array, but, after right-rotating the half of the array[(start + 1)..end]. The idea for the rotation is to merge the array so that the positive array[start] is always merged with the positive elements. But, the only thing here is that the merged array will have all the positive elements on the left and negative elements on the right. So we reverse the sequence in each recursion to get back the original sequence of negative elements and then positive elements subsequently.
    It can be observed since we reverse the array while merging with a positive first element in each recursion, so the sequence of positive elements, although coming after the negative elements, are in reverse order. So, as a final step, we reverse only the positive half of the final array, and, subsequently getting the intended sequence.

Below is the implementation of the above approach: 


Output
array: [-12, -11, -13, -5, -6, 7, 5, 3, 6]
rearranged array: [-12, -11, -13, -5, -6, 7, 5, 3, 6]

Time complexity: O(N2)
Auxiliary Space: O(N2), as implicit stack is used due to recursive calls

Comment
Article Tags: