Sort Colors 哈希排序

来源:互联网 发布:sql注入防止php 编辑:程序博客网 时间:2024/05/23 00:19

Sort Colors

 

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.

class Solution {public:    void sortColors(int A[], int n) {                int i,red,blue,white;        red=white=blue=0;        for(i=0;i<n;i++)        {            if(A[i]==0)            {                red++;            }            else if(A[i]==1)            {                white++;            }            else if(A[i]==2)            {                blue++;            }        }        for(i=0;i<red;i++)        {            A[i]=0;        }        for(;i<red+white;i++)        {            A[i]=1;        }        for(;i<n;i++)        {            A[i]=2;        }    }};

0 0
原创粉丝点击