Given an integer array nums of even length consisting of an equal number of positive and negative integers.Return the answer array in such a way that the given conditions are met:
Input : nums = [2, 4, 5, -1, -3, -4]
Output : [2, -1, 4, -3, 5, -4]
Explanation: The positive number 2, 4, 5 maintain their relative positions and -1, -3, -4 maintain their relative positions
Input : nums = [1, -1, -3, -4, 2, 3]
Output : [1, -1, 2, -3, 3, -4]
Explanation: The positive number 1, 2, 3 maintain their relative positions and -1, -3, -4 maintain their relative positions
Input: nums = [-4, 4, -4, 4, -4, 4]
As the array contains positive and negative elements, we can think of segregating the array elements into two parts. The first array will contain only positive elements and the second array will contain only negative elements. After this, we can just put the elements back in the original array alternatively. As the question states that positive elements should come first, so put positive element first and then negative one and so on. At the end of the process the original array will contain the desired result.
#include <bits/stdc++.h>
using namespace std;
class Solution {
public:
// Function to rearrange the given array by signs
vector<int> rearrangeArray(vector<int>& nums) {
int n = nums.size();
// Define 2 vectors, one for storing positive
// and the other for negative elements of the array
vector<int> pos, neg;
// Segregate the array into positives and negatives
for (int i = 0; i < n; ++i) {
if (nums[i] > 0) pos.push_back(nums[i]);
else neg.push_back(nums[i]);
}
// Positives on even indices, negatives on odd
for (int i = 0; i < n / 2; ++i) {
nums[2 * i] = pos[i];
nums[2 * i + 1] = neg[i];
}
// Return the result
return nums;
}
};
int main() {
vector<int> A = {1, 2, -4, -5};
// Create an instance of Solution class
Solution sol;
// Get the rearranged array
vector<int> ans = sol.rearrangeArray(A);
// Print the result
for (int num : ans) {
cout << num << " ";
}
return 0;
}
import java.util.*;
class Solution {
// Function to rearrange the given array by signs
public int[] rearrangeArray(int[] nums) {
int n = nums.length;
/* Define 2 vectors, one for storing positive
and other for negative elements of the array.*/
List<Integer> pos = new ArrayList<>();
List<Integer> neg = new ArrayList<>();
// Segregate the array into positives and negatives.
for (int i = 0; i < n; i++) {
if (nums[i] > 0) pos.add(nums[i]);
else neg.add(nums[i]);
}
// Positives on even indices, negatives on odd.
for (int i = 0; i < n / 2; i++) {
nums[2 * i] = pos.get(i);
nums[2 * i + 1] = neg.get(i);
}
// Return the result
return nums;
}
public static void main(String[] args) {
int[] A = {1, 2, -4, -5};
// Create an instance of Solution class
Solution sol = new Solution();
int[] ans = sol.rearrangeArray(A);
// Print the result
for (int num : ans) {
System.out.print(num + " ");
}
}
}
class Solution:
# Function to rearrange the given array by signs
def rearrangeArray(self, nums):
n = len(nums)
""" Define 2 vectors, one for storing positive
and other for negative elements of the array."""
pos = []
neg = []
# Segregate the array into positives and negatives.
for num in nums:
if num > 0:
pos.append(num)
else:
neg.append(num)
# Positives on even indices, negatives on odd.
for i in range(n // 2):
nums[2 * i] = pos[i]
nums[2 * i + 1] = neg[i]
# Return the result
return nums
if __name__ == "__main__":
A = [1, 2, -4, -5]
# Create an instance of Solution class
sol = Solution()
ans = sol.rearrangeArray(A)
# Print the result
print(" ".join(map(str, ans)))
class Solution {
// Function to rearrange the given array by signs
rearrangeArray(nums) {
/* Define 2 vectors, one for storing positive
and other for negative elements of the array.*/
let pos = [];
let neg = [];
// Segregate the array into positives and negatives.
nums.forEach(num => {
if (num > 0) pos.push(num);
else neg.push(num);
});
// Positives on even indices, negatives on odd.
for (let i = 0; i < nums.length / 2; i++) {
nums[2 * i] = pos[i];
nums[2 * i + 1] = neg[i];
}
// Return the result
return nums;
}
}
const A = [1, 2, -4, -5];
// Create an instance of Solution class
const sol = new Solution();
const ans = sol.rearrangeArray(A);
// Print the result
console.log(ans.join(" "));
Consider having a group of kids, and you need them to line up for a photo such that they alternate between wearing red shirts and blue shirts, and the line starts with a red shirt. Let's say there are equal numbers of kids wearing red and blue shirts.
Begin with the first position designated for a kid wearing a red shirt. The second position is for a kid wearing a blue shirt.
After calling out the kids, place the first red shirt kid at the first position. Then place the first blue shirt kid at the second position. Continue this process, placing each subsequent red shirt kid at the next available "red" position, and each blue shirt kid at the next available "blue" position.
For a complete dry run, refer to the video above.
#include <bits/stdc++.h>
using namespace std;
class Solution {
public:
//Function to rearrange elements by their sign
vector<int> rearrangeArray(vector<int>& nums) {
int n = nums.size();
// Initialize a result vector of size n
vector<int> ans(n, 0);
// Initialize indices for positive and negative elements
int posIndex = 0, negIndex = 1;
// Traverse through each element in nums
for (int i = 0; i < n; i++) {
if (nums[i] < 0) {
/* If current element is negative, place
it at the next odd index in ans*/
ans[negIndex] = nums[i];
// Move to the next odd index
negIndex += 2;
} else {
ans[posIndex] = nums[i];
// Move to the next even index
posIndex += 2;
}
}
// Return the rearranged array
return ans;
}
};
int main() {
vector<int> A = {1, 2, -4, -5};
// Create an instance of the Solution class
Solution sol;
vector<int> ans = sol.rearrangeArray(A);
// Print the rearranged array
for (int i = 0; i < ans.size(); i++) {
cout << ans[i] << " ";
}
return 0;
}
import java.util.*;
class Solution {
//Function to rearrange elements by their sign
public int[] rearrangeArray(int[] nums) {
int n = nums.length;
// Initialize a result vector of size n
int[] ans = new int[n];
/* Initialize indices for positive
and negative elements*/
int posIndex = 0, negIndex = 1;
// Traverse through each element in nums
for (int i = 0; i < n; i++) {
if (nums[i] < 0) {
/* If current element is negative, place
it at the next odd index in ans*/
ans[negIndex] = nums[i];
// Move to the next odd index
negIndex += 2;
} else {
ans[posIndex] = nums[i];
// Move to the next even index
posIndex += 2;
}
}
// Return the rearranged array
return ans;
}
public static void main(String[] args) {
int[] A = {1, 2, -4, -5};
// Create an instance of the Solution class
Solution sol = new Solution();
int[] ans = sol.rearrangeArray(A);
// Print the rearranged array
for (int i = 0; i < ans.length; i++) {
System.out.print(ans[i] + " ");
}
}
}
from typing import List
class Solution:
#Function to rearrange elements by their sign
def rearrangeArray(self, nums: List[int]) -> List[int]:
n = len(nums)
# Initialize a result vector of size n
ans = [0] * n
# Initialize indices for positive and negative elements
posIndex, negIndex = 0, 1
# Traverse through each element in nums
for i in range(n):
if nums[i] < 0:
""" If current element is negative,
place it at the next odd index in ans"""
ans[negIndex] = nums[i]
# Move to the next odd index
negIndex += 2
else:
ans[posIndex] = nums[i]
# Move to the next even index
posIndex += 2
# Return the rearranged array
return ans
if __name__ == "__main__":
A = [1, 2, -4, -5]
# Create an instance of the Solution class
sol = Solution()
ans = sol.rearrangeArray(A)
# Print the rearranged array
print(" ".join(map(str, ans)))
class Solution {
//Function to rearrange elements by their sign
rearrangeArray(nums) {
const n = nums.length;
// Initialize a result vector of size n
const ans = new Array(n).fill(0);
// Initialize indices for positive and negative elements
let posIndex = 0, negIndex = 1;
// Traverse through each element in nums
for (let i = 0; i < n; i++) {
if (nums[i] < 0) {
/* If current element is negative, place
it at the next odd index in ans*/
ans[negIndex] = nums[i];
// Move to the next odd index
negIndex += 2;
} else {
ans[posIndex] = nums[i];
// Move to the next even index
posIndex += 2;
}
}
// Return the rearranged array
return ans;
}
}
// Main function to test
const A = [1, 2, -4, -5];
// Create an instance of the Solution class
const sol = new Solution();
const ans = sol.rearrangeArray(A);
// Print the rearranged array
console.log(ans.join(" "));
Q: How does the algorithm ensure the order of positives and negatives is preserved?
A: The algorithm processes positives and negatives in the order they appear in the original array by iterating over the separated positive and negative arrays without modifying their relative order.
Q: How does the algorithm handle edge cases like duplicates?
A: The algorithm treats duplicate integers the same as other integers, preserving their order during separation and merging. Duplicates do not affect the correctness of the alternation.
Q: How would you modify the algorithm to handle uneven counts of positives and negatives?
A: If the counts are uneven: Fill the result array with as many alternating pairs as possible. Append the remaining elements (all positives or all negatives) to the end of the result array while preserving their order.