[Algo] 11. Rainbow Sort

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

  • {0} is sorted to {0}
  • {1, 0} is sorted to {0, 1}
  • {1, 0, 1, -1, 0} is sorted to {-1, 0, 0, 1, 1}

Assumptions

  • The input array is not null.

Corner Cases

  • What if the input array is of length zero? In this case, we should not do anything as well.
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;
  }
}

 

Guess you like

Origin www.cnblogs.com/xuanlu/p/12406046.html
Recommended