码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode1051Height Checker

时间:2020-01-20 09:36:04      阅读:61      评论:0      收藏:0      [点我收藏+]

标签:count   code   one   array   冒泡   int   clone   i++   arrays   

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

标签:count   code   one   array   冒泡   int   clone   i++   arrays   

原文地址:https://www.cnblogs.com/chengxian/p/12216199.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!