922. Sort Array By Parity II(python+cpp)

题目:

Given an array A of non-negative integers, half of the integers in Aare odd, and half of the integers are even.
Sort the array so that whenever A[i] is odd, i is odd; and whenever
A[i] is even, i is even.
You may return any answer array that satisfies this condition.
Example 1:

Input: [4,2,5,7]
Output: [4,5,2,7] 
Explanation: [4,7,2,5], [2,5,4,7],[2,7,4,5] would also have been accepted.  

Note:
2 <= A.length <= 20000 A.length % 2 == 0
0 <= A[i] <= 1000

解释:
让奇数位置是奇数,让偶数位置是偶数。
看到这道题第一反应的python解法:

class Solution:
    def sortArrayByParityII(self, A):
        """
        :type A: List[int]
        :rtype: List[int]
        """
        even=[a for a in A if a%2==0]
        odd=[a for a in A if a%2]
        result=[]
        for i in range(len(A)//2):
            result.append(even[i])
            result.append(odd[i])
        return result

更常规的解法是用两个指针,会更快,也不需要用额外的数组存奇数和偶数,降低了空间复杂度。

class Solution:
    def sortArrayByParityII(self, A):
        """
        :type A: List[int]
        :rtype: List[int]
        """
        evenp,oddp=0,1
        result=[0]*len(A)
        for num in A:
            if num%2:
                result[oddp]=num
                oddp+=2
            else:
                result[evenp]=num
                evenp+=2
        return result

c++代码:

class Solution {
public:
    vector<int> sortArrayByParityII(vector<int>& A) {
        int evenp=0,oddp=1;
        vector<int> result(A.size(),0);
        for(auto num:A)
        {
            if (num%2)
            {
                result[oddp]=num;
                oddp+=2;
            }
            else
            {
                result[evenp]=num;
                evenp+=2;
            }
        }
        return result;
    }
};

总结:
很简单的题目。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值