1051. 高度检查器(排序比较)

1051. 高度检查器

class Solution {
public:
    int heightChecker(vector<int>& heights) {
        int bb[1000];
        for(int i=0;i<heights.size();i++)
            bb[i]=heights[i];
        sort(bb,bb+heights.size());
        int ops=0;
        for(int i=0;i<heights.size();i++)
        {
            if(bb[i]!=heights[i])
                ops++;
        }
         return ops;
    }
};

 

上一篇:实现并发服务器


下一篇:1051 Pop Sequence (25分)栈