看网友的一道腾讯面试题有感

原题是:10000+个数字钟找出top100
我稍作改动,可以是top任何数字。

package model.test;

import java.util.Arrays;
import java.util.Comparator;
import java.util.HashSet;
import java.util.Random;
import java.util.Set;
import java.util.TreeSet;

//10000+个数字钟找出top100
public class Top {
Set<Integer> top;
int topNumber;

public Top(int topNumber,Set<Integer> inputValues) {
this.topNumber = topNumber;
this.top = new TreeSet<Integer>(new Comparator<Integer>() {
@Override
public int compare(Integer o1, Integer o2) {
return o1 - o2;
}
});
for(int input:inputValues){
this.add(input);
}
}

public Integer[] getTop(){
return this.top.toArray(new Integer[] {});
}

private void add(int value) {
if (this.topNumber == this.top.size() && value > (Integer) this.top.toArray()[0]) {
this.top.remove(this.top.toArray()[0]);
}
if (this.top.size() < this.topNumber) {
this.top.add(new Integer(value));
}
}

public static void main(String[] args) {
//准备测试数据
Set<Integer> input=new HashSet<Integer>();
for(int i=0;i<50000;i++){
input.add(new Integer(new Random().nextInt(Integer.MAX_VALUE)));
}
//输出结果
System.out.println(Arrays.toString(new Top(1000, input).getTop()));
}
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值