Leetcode1051Height Checker

Posted 一只桃子

tags:

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

public int heightChecker(int[] heights) {
int [] Heights=heights.clone();
int count=0; //标记有几个不同
Arrays.sort(heights);
for(int i=0;i<heights.length;i++) {
if (Heights[i] != heights[i]) {
count++;
}
}
System.out.println(count);
return count;
}

前后用的冒泡和快排时间复杂度竟然一样

这里mark一下没搞懂

以上是关于Leetcode1051Height Checker的主要内容,如果未能解决你的问题,请参考以下文章

LeetCode --- 1051. Height Checker 解题报告

Leetcode1051Height Checker

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

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

LEETCODE401051. Height Checker

1051. Height Checker