首页 > 其他 > 详细

11.8---维护x的秩(CC150)

时间:2016-01-05 12:27:26      阅读:240      评论:0      收藏:0      [点我收藏+]

思路:比较easy。就是借助hashset让他有序然后就能够比较节省时间了。

答案:

技术分享
    
    public static int[] getRankOfNumber(int[] a, int n){
        int[] res = new int[n];
        HashSet<Integer> hash = new HashSet();
        for(int i = 0; i < n;i++){
            int num = 0;
            for(int tmp : hash){
                if(tmp <= a[i]){
                    num++;
                }
            }
            hash.add(a[i]);
            res[i] = num;
        }
        
        
        
        
        return res;
    }
View Code

 

11.8---维护x的秩(CC150)

原文:http://www.cnblogs.com/yueyebigdata/p/5101832.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!