您的位置:首页 > 其它

Partition Array by Odd and Even

2017-10-17 21:52 239 查看
Partition an integers array into odd number first and even number second.

Have you met this question in a real interview? Yes

Example

Given [1, 2, 3, 4], return [1, 3, 2, 4]

java

public class Solution {
/*
* @param nums: an array of integers
* @return: nothing
*/
public void partitionArray(int[] nums) {
// write your code here
if (nums == null || nums.length == 0 || nums.length == 1) {
return;
}
int left = 0;
int right = nums.length - 1;
while (left <= right) {
while (left <= right && nums[left] % 2 != 0) {
left++;
}
while (left <= right && nums[right] % 2 == 0) {
right--;
}
if (left <= right) {
int temp = nums[left];
nums[left] = nums[right];
nums[right] = temp;
left++;
right--;
}
}
}
}


python

class Solution:
"""
@param: nums: an array of integers
@return: nothing
"""
def partitionArray(self, nums):
# write your code here
if nums == None or len(nums) == 0 or len(nums) == 1:
return
left, right = 0, len(nums) - 1
while left <= right:
while left <= right and nums[left] % 2 != 0:
left += 1
while left <= right and nums[right] % 2 == 0:
right -= 1
if left <= right:
nums[left], nums[right] = nums[right], nums[left]
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: