LintCode Python 简单级题目 373.奇偶分割数组

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LintCode Python 简单级题目 373.奇偶分割数组相关的知识,希望对你有一定的参考价值。

题目描述:

分割一个整数数组,使得奇数在前偶数在后。

样例

给定 [1, 2, 3, 4],返回 [1, 3, 2, 4]

挑战 

在原数组中完成,不使用额外空间。

题目分析:

挑战 

在原数组中完成,不使用额外空间。

新建两个指针,一个begin指向数组[0],一个end指向[n-1]
然后循环数组,找到一个偶数,与end交换
此时end[n-1]已为偶数,所有end重指向[n-2],

源码:

class Solution:
    # @param nums: a list of integers
    # @return: nothing
    def partitionArray(self, nums):
        # write your code here
        if nums is None: return None
        i = 0
        j = len(nums) - 1
        while i<j:
            if nums[i]%2 == 0:
                nums[i],nums[j] = nums[j],nums[i]
                j = j - 1
            else:
                i = i + 1

  

以上是关于LintCode Python 简单级题目 373.奇偶分割数组的主要内容,如果未能解决你的问题,请参考以下文章

LintCode Python 简单级题目 82.落单的数

LintCode Python 简单级题目 517.丑数

LintCode Python 简单级题目 423.有效的括号序列

LintCode Python 简单级题目 35.翻转链表

LintCode Python 简单级题目 39.恢复旋转排序数组

LintCode Python 简单级题目 60.搜索插入位置