文章目录
- 1. 题目
- 2. 解题
1. 题目
描述
班上的学生根据他们的年级照片的身高升序排列,确定当前未站在正确位置的学生人数
数组长度 <= 10^5
示例
输入: heights = [1,1,3,3,4,1]输出: 3解释: 经过排序后 heights变成了[1,1,1,3,3,4],有三个学生不在应在的位置上
来源:https://tianchi.aliyun.com/oj/141742855745988779/153294680351772731
2. 解题
- 复制一份,排序,跟原来的对比
class Solution {
public:/*** @param heights: Students height* @return: How many people are not where they should be*/int orderCheck(vector<int> &heights) {// write your code herevector<int> arr = heights;sort(heights.begin(), heights.end());int count = 0;for(int i = 0; i < arr.size(); i++){if(arr[i] != heights[i])count++;}return count;}
};
101ms C++
我的CSDN博客地址 https://michael.blog.csdn.net/
长按或扫码关注我的公众号(Michael阿明),一起加油、一起学习进步!