• LeetCode每日一题(2149. Rearrange Array Elements by Sign)


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

    You should rearrange the elements of nums such that the modified array follows the given conditions:

    Every consecutive pair of integers have opposite signs.
    For all integers with the same sign, the order in which they were present in nums is preserved.
    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.

    题比较简单, 把 nums 中的正数和负数分开来, 然后再 merge 起来就可以了。


    
    impl Solution {
        pub fn rearrange_array(nums: Vec<i32>) -> Vec<i32> {
            let mut positives = Vec::new();
            let mut negatives = Vec::new();
            nums.into_iter().for_each(|v| {
                if v > 0 {
                    positives.push(v);
                    return;
                }
                negatives.push(v);
            });
            positives
                .into_iter()
                .zip(negatives)
                .fold(Vec::new(), |mut l, (p, n)| {
                    l.push(p);
                    l.push(n);
                    l
                })
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
  • 相关阅读:
    探索智慧互联网医院系统源码:预约挂号APP开发教学
    Chrome命令大全
    Redis集群
    golang 多环境配置切换
    最真实的大数据SQL面试题(一)
    MySQL笔记之Checkpoint机制
    刨根问底 Redis, 面试过程真好使
    K8s 部署 CNI 网络组件+k8s 多master集群部署+负载均衡
    python实现adb辅助点击屏幕工具
    C# async / await 任务超时处理
  • 原文地址:https://blog.csdn.net/wangjun861205/article/details/127682966