标签:-- ++ anything == examples put else sum not
Given an array of balls, where the color of the balls can only be Red, Green or Blue, sort the balls such that all the Red balls are grouped on the left side, all the Green balls are grouped in the middle and all the Blue balls are grouped on the right side. (Red is denoted by -1, Green is denoted by 0, and Blue is denoted by 1).
Examples
Assumptions
Corner Cases
public class Solution { public int[] rainbowSort(int[] array) { // Write your solution here if (array == null || array.length == 0) { return array; } int neg = 0; int pos = array.length - 1; int zero = 0; while (zero <= pos) { if (array[zero] == -1) { swap(array, zero++, neg++); } else if (array[zero] == 0) { zero++; } else { swap(array, zero, pos--); } } return array; } private void swap (int[] arr, int a, int b) { int tmp = arr[a]; arr[a] = arr[b]; arr[b] = tmp; } }
标签:-- ++ anything == examples put else sum not
原文地址:https://www.cnblogs.com/xuanlu/p/12406046.html