【发布时间】:2016-04-11 15:51:44
【问题描述】:
我有一个想要获得百分位数的列表。
HashMap<Integer,String> test=new HashMap<Integer,String>();
test.put(100,"Amit");
test.put(101,"Vijay");
test.put(102,"Rahul");
test.put(103,"Amit");
test.put(104,"Vijay");
test.put(105,"Rahul");
使用以下百分位数公式,我该如何迭代和正确使用? 我想得到哈希图中每个键的百分位数
Number of scores blow X*100/N
【问题讨论】:
-
不清楚你想要什么?简述
-
我想得到哈希图中每个键的百分位数
标签: java hashmap percentile