Sort Colors

1418 단어 자바계수 정렬
Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, white and blue.
Here, we will use the integers 0, 1, and 2 to represent the color red, white, and blue respectively.
Note:
You are not suppose to use the library's sort function for this problem.
이 문 제 를 해결 하려 면 우 리 는 계수 정렬 알고리즘 을 채택 할 수 있다.먼저, 우 리 는 배열 을 옮 겨 다 니 며 각 색상 의 개 수 를 얻 고 배열 count [i] 에 기록 합 니 다.그 다음 에 우 리 는 계산 배열 을 누적 하여 count [i] = count [i] + count [i - 1] 을 합 니 다. 그러면 사실은 서로 다른 요소 에 서로 다른 크기 의 공간 을 주 는 것 입 니 다.그리고 정렬 이 필요 한 배열 을 옮 겨 다 니 며 임시 배열 tem [] 으로 옮 겨 다 니 는 요 소 를 기록 하여 tem [-- count [nums [i]] = nums [i];이렇게 하면 모든 색 을 그 가 속 한 공간 뒤에서 부터 채 워 서 끝 날 때 까지 채 우 는 것 과 같다.코드 는 다음 과 같 습 니 다:

public class Solution {
    public void sortColors(int[] nums) {
        if(nums == null || nums.length == 0)
            return ;
        int[] count = new int[3];
        int[] tem = new int[nums.length];
        for(int i = 0; i < nums.length; i++) 
            count[nums[i]] ++;
        for(int i = 1; i < 3; i++)
            count[i] = count[i] + count[i - 1];
        for(int i = 0; i < nums.length; i++) 
            tem[--count[nums[i]]] = nums[i];
        System.arraycopy(tem, 0, nums, 0, tem.length);
    }
}

좋은 웹페이지 즐겨찾기