An array contains both positive and negative numbers in random order. Rearrange the array elements so that positive and negative numbers are placed alternatively. A number of positive and negative numbers need not be equal. If there are more positive numbers they appear at the end of the array. If there are more negative numbers, they too appear at the end of the array.
Example:
Input: [-1, 2, -3, 4, 5, 6, -7, 8, 9]
Output:[9, -7, 8, -3, 5, -1, 2, 4, 6]
Input: [-1, 3, -2, -4, 7, -5]
Output:[7, -2, 3, -5, -1, -4]
Note: The partition process in this approach changes the relative order of elements. I.e. the order of the appearance of elements is not maintained with this approach. See this for maintaining the order of appearance of elements in this problem.
Approach:
The solution is to first separate positive and negative numbers using the partition process of QuickSort. In the partition process, consider 0 as the value of the pivot element so that all negative numbers are placed before positive numbers. Once negative and positive numbers are separated, we start from the first negative number and first positive number and swap every alternate negative number with the next positive number.
Below is the implementation of above idea:
C++
#include <iostream>
using namespace std;
class GFG
{
public :
void rearrange( int [], int );
void swap( int *, int *);
void printArray( int [], int );
};
void GFG :: rearrange( int arr[], int n)
{
int i = -1;
for ( int j = 0; j < n; j++)
{
if (arr[j] < 0)
{
i++;
swap(&arr[i], &arr[j]);
}
}
int pos = i + 1, neg = 0;
while (pos < n && neg < pos &&
arr[neg] < 0)
{
swap(&arr[neg], &arr[pos]);
pos++;
neg += 2;
}
}
void GFG :: swap( int *a, int *b)
{
int temp = *a;
*a = *b;
*b = temp;
}
void GFG :: printArray( int arr[], int n)
{
for ( int i = 0; i < n; i++)
cout << arr[i] << " " ;
}
int main()
{
int arr[] = {-1, 2, -3, 4,
5, 6, -7, 8, 9};
int n = sizeof (arr) / sizeof (arr[0]);
GFG test;
test.rearrange(arr, n);
test.printArray(arr, n);
return 0;
}
|
C
#include <stdio.h>
void swap( int *a, int *b);
void rearrange( int arr[], int n)
{
int i = -1;
for ( int j = 0; j < n; j++)
{
if (arr[j] < 0)
{
i++;
swap(&arr[i], &arr[j]);
}
}
int pos = i+1, neg = 0;
while (pos < n && neg < pos && arr[neg] < 0)
{
swap(&arr[neg], &arr[pos]);
pos++;
neg += 2;
}
}
void swap( int *a, int *b)
{
int temp = *a;
*a = *b;
*b = temp;
}
void printArray( int arr[], int n)
{
for ( int i = 0; i < n; i++)
printf ( "%4d " , arr[i]);
}
int main()
{
int arr[] = {-1, 2, -3, 4,
5, 6, -7, 8, 9};
int n = sizeof (arr)/ sizeof (arr[0]);
rearrange(arr, n);
printArray(arr, n);
return 0;
}
|
Java
import java.io.*;
class Alternate {
static void rearrange( int arr[], int n)
{
int i = - 1 , temp = 0 ;
for ( int j = 0 ; j < n; j++)
{
if (arr[j] < 0 )
{
i++;
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
int pos = i+ 1 , neg = 0 ;
while (pos < n && neg < pos && arr[neg] < 0 )
{
temp = arr[neg];
arr[neg] = arr[pos];
arr[pos] = temp;
pos++;
neg += 2 ;
}
}
static void printArray( int arr[], int n)
{
for ( int i = 0 ; i < n; i++)
System.out.print(arr[i] + " " );
}
public static void main (String[] args)
{
int arr[] = {- 1 , 2 , - 3 , 4 , 5 , 6 , - 7 , 8 , 9 };
int n = arr.length;
rearrange(arr,n);
System.out.println( "Array after rearranging: " );
printArray(arr,n);
}
}
|
Python3
def rearrange(arr, n):
i = - 1
for j in range (n):
if (arr[j] < 0 ):
i + = 1
arr[i], arr[j] = arr[j], arr[i]
pos, neg = i + 1 , 0
while (pos < n and neg < pos and arr[neg] < 0 ):
arr[neg], arr[pos] = arr[pos], arr[neg]
pos + = 1
neg + = 2
def printArray(arr, n):
for i in range (n):
print (arr[i],end = " " )
arr = [ - 1 , 2 , - 3 , 4 , 5 , 6 , - 7 , 8 , 9 ]
n = len (arr)
rearrange(arr, n)
printArray(arr, n)
|
C#
using System;
class Alternate {
static void rearrange( int [] arr, int n)
{
int i = -1, temp = 0;
for ( int j = 0; j < n; j++) {
if (arr[j] < 0) {
i++;
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
int pos = i + 1, neg = 0;
while (pos < n && neg < pos && arr[neg] < 0) {
temp = arr[neg];
arr[neg] = arr[pos];
arr[pos] = temp;
pos++;
neg += 2;
}
}
static void printArray( int [] arr, int n)
{
for ( int i = 0; i < n; i++)
Console.Write(arr[i] + " " );
}
public static void Main()
{
int [] arr = { -1, 2, -3, 4, 5, 6, -7, 8, 9 };
int n = arr.Length;
rearrange(arr, n);
printArray(arr, n);
}
}
|
Javascript
<script>
function rearrange(arr,n)
{
let i = -1, temp = 0;
for (let j = 0; j < n; j++)
{
if (arr[j] < 0)
{
i++;
temp = arr[i];
arr[i] = arr[j];
arr[j] = temp;
}
}
let pos = i+1, neg = 0;
while (pos < n && neg < pos && arr[neg] < 0)
{
temp = arr[neg];
arr[neg] = arr[pos];
arr[pos] = temp;
pos++;
neg += 2;
}
}
function printArray(arr,n)
{
for (let i = 0; i < n; i++)
document.write(arr[i] + " " );
}
let arr = [-1, 2, -3, 4, 5, 6, -7, 8, 9];
let n = arr.length;
rearrange(arr,n);
printArray(arr,n);
</script>
|
PHP
<?php
function rearrange(& $arr , $n )
{
$i = -1;
for ( $j = 0; $j < $n ; $j ++)
{
if ( $arr [ $j ] < 0)
{
$i ++;
swap( $arr [ $i ], $arr [ $j ]);
}
}
$pos = $i + 1;
$neg = 0;
while ( $pos < $n && $neg < $pos &&
$arr [ $neg ] < 0)
{
swap( $arr [ $neg ], $arr [ $pos ]);
$pos ++;
$neg += 2;
}
}
function swap(& $a , & $b )
{
$temp = $a ;
$a = $b ;
$b = $temp ;
}
function printArray(& $arr , $n )
{
for ( $i = 0; $i < $n ; $i ++)
echo " " . $arr [ $i ] . " " ;
}
$arr = array (-1, 2, -3, 4, 5, 6, -7, 8, 9);
$n = count ( $arr );
rearrange( $arr , $n );
printArray( $arr , $n );
?>
|
Output:
4 -3 5 -1 6 -7 2 8 9
Time Complexity: O(n) where n is number of elements in given array. As, we are using a loop to traverse N times so it will cost us O(N) time
Auxiliary Space: O(1), as we are not using any extra space.
Related Articles:
Rearrange positive and negative numbers with constant extra space
Move all negative elements to end in order with extra space allowed
This article is compiled by Abhay Rathi. Please write comments if you find anything incorrect, or you want to share more information about the topic discussed above.
If you like GeeksforGeeks and would like to contribute, you can also write an article and mail your article to review-team@geeksforgeeks.org. See your article appearing on the GeeksforGeeks main page and help other Geeks.
Feeling lost in the world of random DSA topics, wasting time without progress? It's time for a change! Join our DSA course, where we'll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 geeks!
Last Updated :
17 Aug, 2023
Like Article
Save Article