返回介绍

solution / 2100-2199 / 2149.Rearrange Array Elements by Sign / README_EN

发布于 2024-06-17 01:03:09 字数 4072 浏览 0 评论 0 收藏 0

2149. Rearrange Array Elements by Sign

中文文档

Description

You are given a 0-indexed integer array nums of even length consisting of an equal number of positive and negative integers.

You should return the array of nums such that the the array follows the given conditions:

  1. Every consecutive pair of integers have opposite signs.
  2. For all integers with the same sign, the order in which they were present in nums is preserved.
  3. The rearranged array begins with a positive integer.

Return _the modified array after rearranging the elements to satisfy the aforementioned conditions_.

 

Example 1:

Input: nums = [3,1,-2,-5,2,-4]
Output: [3,-2,1,-5,2,-4]
Explanation:
The positive integers in nums are [3,1,2]. The negative integers are [-2,-5,-4].
The only possible way to rearrange them such that they satisfy all conditions is [3,-2,1,-5,2,-4].
Other ways such as [1,-2,2,-5,3,-4], [3,1,2,-2,-5,-4], [-2,3,-5,1,-4,2] are incorrect because they do not satisfy one or more conditions.  

Example 2:

Input: nums = [-1,1]
Output: [1,-1]
Explanation:
1 is the only positive integer and -1 the only negative integer in nums.
So nums is rearranged to [1,-1].

 

Constraints:

  • 2 <= nums.length <= 2 * 105
  • nums.length is even
  • 1 <= |nums[i]| <= 105
  • nums consists of equal number of positive and negative integers.

 

It is not required to do the modifications in-place.

Solutions

Solution 1

class Solution:
  def rearrangeArray(self, nums: List[int]) -> List[int]:
    ans = [0] * len(nums)
    i, j = 0, 1
    for num in nums:
      if num > 0:
        ans[i] = num
        i += 2
      else:
        ans[j] = num
        j += 2
    return ans
class Solution {

  public int[] rearrangeArray(int[] nums) {
    int[] ans = new int[nums.length];
    int i = 0, j = 1;
    for (int num : nums) {
      if (num > 0) {
        ans[i] = num;
        i += 2;
      } else {
        ans[j] = num;
        j += 2;
      }
    }
    return ans;
  }
}
class Solution {
public:
  vector<int> rearrangeArray(vector<int>& nums) {
    vector<int> ans(nums.size());
    int i = 0, j = 1;
    for (int num : nums) {
      if (num > 0) {
        ans[i] = num;
        i += 2;
      } else {
        ans[j] = num;
        j += 2;
      }
    }
    return ans;
  }
};
func rearrangeArray(nums []int) []int {
  ans := make([]int, len(nums))
  i, j := 0, 1
  for _, num := range nums {
    if num > 0 {
      ans[i] = num
      i += 2
    } else {
      ans[j] = num
      j += 2
    }
  }
  return ans
}
function rearrangeArray(nums: number[]): number[] {
  let ans = [];
  let i = 0,
    j = 1;
  for (let num of nums) {
    if (num > 0) {
      ans[i] = num;
      i += 2;
    } else {
      ans[j] = num;
      j += 2;
    }
  }
  return ans;
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文