LeetCode 1051. 高度检查器

Posted hurryxin

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 1051. 高度检查器相关的知识,希望对你有一定的参考价值。

LeetCode 1051. 高度检查器

2. Tag

  1. 数组
  2. Optimize

3. Code

桶排序,时间复杂度(O(n))

class Solution {
public:
    int heightChecker(vector<int>& heights) {
        int cout[105]={0};
        int res=0;
        for(auto height:heights){
            cout[height]++;
        }
        int j=0;
        for(int i=1;i<105;i++){
            while(cout[i]--){
                if(heights[j++]!=i)    res++;
            }
        }
        return res;
    }
}; 

以上是关于LeetCode 1051. 高度检查器的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode 1051. 高度检查器

算法leetcode1051. 高度检查器(rust和go)

算法leetcode1051. 高度检查器(rust和go)

Python描述 LeetCode 1051. 高度检查器

Leetcode 1051.高度检查

LeetCode 1051. Height Checker