- 浏览: 181673 次
- 性别:
- 来自: 杭州
文章分类
最新评论
-
abc20899:
对啊!报错!楼主你测试了吗?
Java7 - 新特性之对集合类的语言支持 -
zskangs1126:
Facebook 的系统架构 -
ccxiajie:
List list={"hello"}; ...
Java7 - 新特性之对集合类的语言支持 -
luoyahu:
请不要把你的兴趣变成工作,因为那样会毁了你的兴趣。
一些对程序员的建议(不要轻易的让人帮你决定,那怕是你的家人) -
coral0212:
我也尝试创过业,但我觉得我这种人是“谋士”,不是能攻城拔寨的“ ...
一些对程序员的建议(不要轻易的让人帮你决定,那怕是你的家人)
电话面试算法题一道:找出数组中重复次数最多的元素并打印
问题不难,看你能给出更优的方案
import java.util.HashMap; import java.util.Iterator; import java.util.Map.Entry; import commons.algorithm.sort.QuickSort; /** * 找出数组中重复次数最多的元素并打印 * */ public class Problem_3 { //先快速排序后循环查找 O( n*log2(n) + n ) public static void find1(int[] arr){ QuickSort.sort(arr); int max = arr[0]; int pre=1; int now=1; for(int i=0;i<(arr.length-1);i++){ if(arr[i]==arr[i+1]) now++; else { if(now>=pre){ pre=now; now=1; max=arr[i]; } } } } //嵌套循环查找 O(n*n) public static void find2(int[] arr){ int pre=0; int max=arr[0]; for(int i=0;i<arr.length;i++){ int now=0; for(int j=0;j<arr.length;j++){ if(arr[i]==arr[j]) { now++; } } if(now>=pre){ max=arr[i]; pre=now; } } } //通过 Hash 方式 public static void find3(int[] arr){ HashMap<Integer,Integer> hm=new HashMap<Integer, Integer>(); for(int i=0;i<arr.length;i++){ if(hm.containsKey(arr[i])) { int count=hm.get(arr[i]); hm.put(arr[i], ++count); }else{ hm.put(arr[i],1); } } Iterator<Entry<Integer, Integer>> it=hm.entrySet().iterator(); int pre=0; int max=arr[0]; while(it.hasNext()) { Entry<Integer, Integer> en=it.next(); int key=en.getKey(); int val=en.getValue(); if(val>pre){ pre=val; max=key; } } } public static void main(String args[]){ //数据量800 重复元素多,查找时候分别是: 46 3680 195 int arr2[]={0,1,2, ..... ,0,1,2,3,6,7,8,9}; //数据量800 重复元素少,查找时间分别是 82 3727 360 int arr[]={0,0,0,11,12,13,14,5,6 ...... ,51,52,53,,728,29,730,731,3,794,95,796,797,798,799}; long start,end; start=System.currentTimeMillis(); for(int i=0;i<1000;i++) find1(arr); end=System.currentTimeMillis(); System.out.println(end-start); start=System.currentTimeMillis(); for(int i=0;i<1000;i++) find2(arr); end=System.currentTimeMillis(); System.out.println(end-start); start=System.currentTimeMillis(); for(int i=0;i<1000;i++) find3(arr); end=System.currentTimeMillis(); System.out.println(end-start); } }
评论
70 楼
yiyidog125
2010-10-20
O(n)是最优解 不可能O(lgn) 你至少要遍历数组一遍才知道哪个值出现得最多...
69 楼
sdh5724
2010-10-20
我也不会解啊, 这么有才的题目。
如果是有限内存, 海量数据的话, 谁能给一个接近O(N)的算法呢。
如果是有限内存, 海量数据的话, 谁能给一个接近O(N)的算法呢。
68 楼
fengjia10
2010-10-20
<div class="quote_title">lewisw 写道</div>
<div class="quote_div">
<div class="quote_title">leves 写道</div>
<div class="quote_div">
<p> </p>
<pre name="code" class="java">public static void find3(int[] arr){
HashMap<Integer,Integer> hm=new HashMap<Integer, Integer>();
for(int i=0;i<arr.length;i++){
if(hm.containsKey(arr[i])) {
int count=hm.get(arr[i]);
hm.put(arr[i], ++count);
}else{
hm.put(arr[i],1);
}
}
Iterator<Entry<Integer, Integer>> it=hm.entrySet().iterator();
int pre=0;
int max=arr[0];
while(it.hasNext()) {
Entry<Integer, Integer> en=it.next();
int key=en.getKey();
int val=en.getValue();
if(val>pre){
pre=val;
max=key;
}
}
//System.out.println(max);
}</pre>
<p> </p>
<p>用Hash的方式写的,为什么测试的时候速度上反而是最慢的</p>
</div>
<p> </p>
<p>这个map创建的时候一定要考虑他的两个构造参数(int initialCapacity, float loadFactor),非常重要, 尤其数据量大的时候, 不然老是在哪里构造新的大的数组然后拷贝,越大越慢, 最后慢死你。</p>
<p>HashMap的内部使用数组+链表保存数据, 默认的initialCapacity=16, loadFactor = 0.75, 具体的自己参考文档。</p>
<p> </p>
<p>你可以这样<span>HashMap<Integer,Integer> hm=<span class="keyword" style="color: #7f0055; font-weight: bold;">new</span><span style="color: black;"> HashMap<Integer, Integer>(arr.length);</span></span></p>
<p>当然一定要确认这个arr.length是不是太大了,内存溢出,数组的length在java里是int的,就是说最大值是4g, 你的内存大大,虚拟机能分配那么多也行,呵呵</p>
</div>
<p>补充一点,初始容量和装载因子是影响hash函数性能的重要因子,也就是影响你地址是否冲突的重要因素,当地址冲突时,选择合适的再散列函数,对相应元素进行地址分配,以便无冲突装载该元素,这个也是很重要的,</p>
<div class="quote_div">
<div class="quote_title">leves 写道</div>
<div class="quote_div">
<p> </p>
<pre name="code" class="java">public static void find3(int[] arr){
HashMap<Integer,Integer> hm=new HashMap<Integer, Integer>();
for(int i=0;i<arr.length;i++){
if(hm.containsKey(arr[i])) {
int count=hm.get(arr[i]);
hm.put(arr[i], ++count);
}else{
hm.put(arr[i],1);
}
}
Iterator<Entry<Integer, Integer>> it=hm.entrySet().iterator();
int pre=0;
int max=arr[0];
while(it.hasNext()) {
Entry<Integer, Integer> en=it.next();
int key=en.getKey();
int val=en.getValue();
if(val>pre){
pre=val;
max=key;
}
}
//System.out.println(max);
}</pre>
<p> </p>
<p>用Hash的方式写的,为什么测试的时候速度上反而是最慢的</p>
</div>
<p> </p>
<p>这个map创建的时候一定要考虑他的两个构造参数(int initialCapacity, float loadFactor),非常重要, 尤其数据量大的时候, 不然老是在哪里构造新的大的数组然后拷贝,越大越慢, 最后慢死你。</p>
<p>HashMap的内部使用数组+链表保存数据, 默认的initialCapacity=16, loadFactor = 0.75, 具体的自己参考文档。</p>
<p> </p>
<p>你可以这样<span>HashMap<Integer,Integer> hm=<span class="keyword" style="color: #7f0055; font-weight: bold;">new</span><span style="color: black;"> HashMap<Integer, Integer>(arr.length);</span></span></p>
<p>当然一定要确认这个arr.length是不是太大了,内存溢出,数组的length在java里是int的,就是说最大值是4g, 你的内存大大,虚拟机能分配那么多也行,呵呵</p>
</div>
<p>补充一点,初始容量和装载因子是影响hash函数性能的重要因子,也就是影响你地址是否冲突的重要因素,当地址冲突时,选择合适的再散列函数,对相应元素进行地址分配,以便无冲突装载该元素,这个也是很重要的,</p>
67 楼
chen592969029
2010-10-13
<p>看了楼主的代码,想自己试试,结果发现你那第一种方法很明显是有错误的,更正后的代码如下:</p>
<p> </p>
<p>
</p>
<pre name="code" class="java"> ArrayUtil.quickSort(arr, 0, arr.length - 1);
int now = 1;
int pre = 1;
for(int i = 0; i < arr.length - 1; i ++) {
if(arr[i] == arr[i + 1]) {
now ++;
} else {
if(now >= pre) {
pre = now;
}
//now = 1;应该放在if语句的外面
now = 1;
}
}
//缺少这一句
if(now >= pre) {
pre = now;
}</pre>
<p> </p>
<p>
</p>
<pre name="code" class="java"> ArrayUtil.quickSort(arr, 0, arr.length - 1);
int now = 1;
int pre = 1;
for(int i = 0; i < arr.length - 1; i ++) {
if(arr[i] == arr[i + 1]) {
now ++;
} else {
if(now >= pre) {
pre = now;
}
//now = 1;应该放在if语句的外面
now = 1;
}
}
//缺少这一句
if(now >= pre) {
pre = now;
}</pre>
66 楼
hoorace
2010-10-10
《编程珠玑》第二章有讲到相关内容
在线性时间排序算法(Linear-Time Sorting)中到计数排序(Counting Sorting)或许是解决这个问题的。具体java实现:
具体讨论的博文:http://www.longtask.com/blog/?p=616
在线性时间排序算法(Linear-Time Sorting)中到计数排序(Counting Sorting)或许是解决这个问题的。具体java实现:
public class CountingSort { private static final int N= 10000; private static final int K= 1000; /** * 得到计数数组 * @param num * @return */ public static int[] computeCountingNum(int[] num){ int maxAppearNum = 0; int count = 0; int[] countingNum = new int[K]; int value,countTmpValue; for(int i=0;i<N;i++){ value = num[i]; countTmpValue = countingNum[value]; //查找出现次数最多的数字 if(countTmpValue > count){ count = countTmpValue; maxAppearNum = value; } countingNum[value] = countingNum[value] + 1; } //打印出满足阿里面试要求到数据 System.out.println("\n"+maxAppearNum); System.out.println(count); return countingNum; } /** * 遍历计数数组,得到排序结果 * @param num * @return */ public static int[] sortedNum(int[] num){ int[] countingNum = computeCountingNum(num); int[] sortedNum = new int[N]; int value; int j = 0; for(int i=0;i<K;i++){ value = countingNum[i]; if(value > 0){ while(value > 0){ sortedNum[j] = i; --value; ++j; } } } return sortedNum; } /** * 产生随机数 * @return */ public static int[] randomNumber(){ int[] num = new int[N]; Random random = new Random(); for(int i=0;i<N;i++){ int m = random.nextInt(K); num[i] = m; } return num; } public static void main(String[] args) { int[] num = CountingSort.randomNumber(); //计数排序耗时 long t1 = System.currentTimeMillis(); CountingSort.sortedNum(num); long t2 = System.currentTimeMillis(); System.out.print(t2-t1); System.out.println(); //快速排序耗时 long t3 = System.currentTimeMillis(); Arrays.sort(num); long t4 = System.currentTimeMillis(); System.out.print(t4-t3); } }
具体讨论的博文:http://www.longtask.com/blog/?p=616
65 楼
sunhj000java
2010-10-09
Crusader 写道
hikaru1012 写道
sunhj000java 写道
我认为这道题的关键是如何遍历这个数据集合,如果能不用遍历集合而找出出现最多的次数的数字是这道题的关键。
我们可以用hashmap保存数据出现的个数,并且用两个变量保存出现最多的次数(max1)和次多的次数(max2),当剩下的数据个数小于max1-max2,那么我们就找出了这个数字了。
最优为n/2 最差为n
我们可以用hashmap保存数据出现的个数,并且用两个变量保存出现最多的次数(max1)和次多的次数(max2),当剩下的数据个数小于max1-max2,那么我们就找出了这个数字了。
最优为n/2 最差为n
如何维护记录出现次数最多和次多的变量要比实现问题本身困难得多吧?
+1
无论在时间和空间上都会耗费很多额外的消耗来维护“最多”与“次多”,我认为大多数情况可能都会得不偿失。。
这个应该不会消耗太多资源吧,在开始比较的时候就确定最多和次多两个变量,在每次改动对应数字的次数时和次多比较一下就可以了,如果大于次多就替换次多并和最多比较,如果也大于最多也替换,否则不做任何操作。这个动作并不消耗太多资源吧
64 楼
zhzhwe
2010-10-09
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">public</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">static</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">void</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> findRepeatMaxValue(</span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">int</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US">[] arr) {</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">long</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> time1 = System.<em>nanoTime</em>();</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">int</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> max = 0;</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><span style='font-size: 10pt; color: #3f7f5f; font-family: "Courier New";' lang="EN-US">// </span><span style="">定义</span><span style='font-size: 10pt; color: #3f7f5f; font-family: "Courier New";' lang="EN-US">MAP KEY</span><span style="">表示存放的数字,</span><span style='font-size: 10pt; color: #3f7f5f; font-family: "Courier New";' lang="EN-US">VALUES</span><span style="">表示出现的次数</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>Map<Integer, Integer> map = </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">new</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> HashMap<Integer, Integer>();</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">for</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> (</span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">int</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> n : arr) {</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">if</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> (map.containsKey(n)) {</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>map.put(n, map.get(n) + 1);</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>} </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">else</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> {</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>map.put(n, 1);</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>}</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><span style='font-size: 10pt; color: #3f7f5f; font-family: "Courier New";' lang="EN-US">// </span><span style="">比较是此数是否为最大次数</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">if</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> (map.get(n) > max)</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>max = map.get(n);</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>}</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">for</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> (Map.Entry<Integer, Integer> m : map.entrySet()) {</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">if</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> (m.getValue() == max) {</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>System.</span><em><span style='font-size: 10pt; color: #0000c0; font-family: "Courier New";' lang="EN-US">out</span></em><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US">.println(m.getKey() + </span><span style='font-size: 10pt; color: #2a00ff; font-family: "Courier New";' lang="EN-US">" </span><span style="">出现了</span><span style='font-size: 10pt; color: #2a00ff; font-family: "Courier New";' lang="EN-US"> "</span><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> + m.getValue() + </span><span style='font-size: 10pt; color: #2a00ff; font-family: "Courier New";' lang="EN-US">" </span><span style="">次</span><span style='font-size: 10pt; color: #2a00ff; font-family: "Courier New";' lang="EN-US">."</span><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US">);</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>}</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>}</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">long</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> time2 = System.<em>nanoTime</em>();</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>System.</span><em><span style='font-size: 10pt; color: #0000c0; font-family: "Courier New";' lang="EN-US">out</span></em><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US">.println(</span><span style='font-size: 10pt; color: #2a00ff; font-family: "Courier New";' lang="EN-US">"findRepeatMaxValue time is "</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>+ ((time2 - time1) / 1000000.0) + </span><span style='font-size: 10pt; color: #2a00ff; font-family: "Courier New";' lang="EN-US">"ms"</span><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US">);</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>}</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">public</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">static</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">void</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> main(String[] args) {</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>Random rand = </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">new</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> Random();</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">int</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> arr[] = </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">new</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">int</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US">[1000000];</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">for</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> (</span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">int</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> i = 0; i < arr.</span><span style='font-size: 10pt; color: #0000c0; font-family: "Courier New";' lang="EN-US">length</span><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US">; i++) {</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>arr[i] = rand.nextInt(100);</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>}</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span><em>findRepeatMaxValue</em>(arr);</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">long</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> time1 = System.<em>nanoTime</em>();</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">int</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> max = 0;</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><span style='font-size: 10pt; color: #3f7f5f; font-family: "Courier New";' lang="EN-US">// </span><span style="">定义</span><span style='font-size: 10pt; color: #3f7f5f; font-family: "Courier New";' lang="EN-US">MAP KEY</span><span style="">表示存放的数字,</span><span style='font-size: 10pt; color: #3f7f5f; font-family: "Courier New";' lang="EN-US">VALUES</span><span style="">表示出现的次数</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>Map<Integer, Integer> map = </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">new</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> HashMap<Integer, Integer>();</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">for</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> (</span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">int</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> n : arr) {</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">if</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> (map.containsKey(n)) {</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>map.put(n, map.get(n) + 1);</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>} </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">else</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> {</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>map.put(n, 1);</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>}</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><span style='font-size: 10pt; color: #3f7f5f; font-family: "Courier New";' lang="EN-US">// </span><span style="">比较是此数是否为最大次数</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">if</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> (map.get(n) > max)</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>max = map.get(n);</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>}</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">for</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> (Map.Entry<Integer, Integer> m : map.entrySet()) {</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">if</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> (m.getValue() == max) {</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>System.</span><em><span style='font-size: 10pt; color: #0000c0; font-family: "Courier New";' lang="EN-US">out</span></em><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US">.println(m.getKey() + </span><span style='font-size: 10pt; color: #2a00ff; font-family: "Courier New";' lang="EN-US">" </span><span style="">出现了</span><span style='font-size: 10pt; color: #2a00ff; font-family: "Courier New";' lang="EN-US"> "</span><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> + m.getValue() + </span><span style='font-size: 10pt; color: #2a00ff; font-family: "Courier New";' lang="EN-US">" </span><span style="">次</span><span style='font-size: 10pt; color: #2a00ff; font-family: "Courier New";' lang="EN-US">."</span><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US">);</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>}</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>}</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">long</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> time2 = System.<em>nanoTime</em>();</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>System.</span><em><span style='font-size: 10pt; color: #0000c0; font-family: "Courier New";' lang="EN-US">out</span></em><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US">.println(</span><span style='font-size: 10pt; color: #2a00ff; font-family: "Courier New";' lang="EN-US">"findRepeatMaxValue time is "</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>+ ((time2 - time1) / 1000000.0) + </span><span style='font-size: 10pt; color: #2a00ff; font-family: "Courier New";' lang="EN-US">"ms"</span><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US">);</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>}</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"> </span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">public</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">static</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">void</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> main(String[] args) {</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>Random rand = </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">new</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> Random();</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">int</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> arr[] = </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">new</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> </span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">int</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US">[1000000];</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span></span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">for</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> (</span><strong><span style='font-size: 10pt; color: #7f0055; font-family: "Courier New";' lang="EN-US">int</span></strong><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"> i = 0; i < arr.</span><span style='font-size: 10pt; color: #0000c0; font-family: "Courier New";' lang="EN-US">length</span><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US">; i++) {</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>arr[i] = rand.nextInt(100);</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span>}</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
<p class="MsoNormal" style="margin: 0cm 0cm 0pt; text-align: left;" align="left"><span style='font-size: 10pt; color: black; font-family: "Courier New";' lang="EN-US"><span style=""> </span><em>findRepeatMaxValue</em>(arr);</span><span style='font-size: 10pt; font-family: "Courier New";' lang="EN-US"></span></p>
63 楼
zhzhwe
2010-10-09
clufeng 写道
public static void findRepeatMaxValue(int[] arr) { long time1 = System.nanoTime(); HashMap<Integer, Integer> box = new HashMap<Integer, Integer>(); int maxValue = 0; int maxCount = 0; for (int i = 0; i < arr.length; i++) { Integer count = box.get(arr[i]); box.put(arr[i], count == null ? 1 : ++count); int newCount = box.get(arr[i]); if(newCount > maxCount) { maxCount = newCount; maxValue = arr[i]; } } long time2 = System.nanoTime(); System.out.println("findRepeatMaxValue time is " + ((time2 - time1) / 1000000.0) + "ms"); System.out.println("maxValue : " + maxValue +" maxCount : " + maxCount); } public static void main(String[] args) { Random rand = new Random(); int arr[] = new int[1000000]; for (int i = 0; i < arr.length; i++) { arr[i] = rand.nextInt(100); } findRepeatMaxValue(arr); }
测试结果:
测试数量:1000000
findRepeatMaxValue time is 146.057722ms
maxValue : 50 maxCount : 10261
楼主说是数组中重复次数最多的元素,而且我认为出现最多次数也有可能不同元素出现相同次数且是最多的,而上面的只显示最大了。
62 楼
hibernater
2010-10-09
lewisw 写道
qvjing520 写道
我测了一下感觉效率换可以,希望大家指教
public class Num2 {
//找出一个数组中重复元素最多的元素并打印出来
private static int[] num1 = {1, 2, 2 ,3,4,4,4,5,6,6,6,6,7,10,11,11,11,11,11,11,15};
private static Object[] num =null;
Map<Integer,Integer> map = new HashMap<Integer,Integer>();
static
{
List lst = new ArrayList();
for(int i=0;i<10000;i++)
{
for(Integer temp:num1)
{
lst.add(temp);
}
}
num = lst.toArray();
}
public static void main(String[] args) {
//System.out.println("second");
new Num2().find(num);
}
private void find(Object[] data)
{
long time = System.currentTimeMillis()/1000;
for(int i=0;i<data.length;i++)
{
if(map.containsKey(data[i]))
{
int t=map.get(data[i]);
map.put((Integer)data[i], ++t);
}
else
{
map.put((Integer)data[i], 1);
}
}
int max = java.util.Collections.max(map.values());
for(Integer key:map.keySet())
{
if(map.get(key)==max)
{
System.out.println("number:"+key+" value:"+max);
}
}
System.out.println(time-(System.currentTimeMillis()/1000));
}
}
public class Num2 {
//找出一个数组中重复元素最多的元素并打印出来
private static int[] num1 = {1, 2, 2 ,3,4,4,4,5,6,6,6,6,7,10,11,11,11,11,11,11,15};
private static Object[] num =null;
Map<Integer,Integer> map = new HashMap<Integer,Integer>();
static
{
List lst = new ArrayList();
for(int i=0;i<10000;i++)
{
for(Integer temp:num1)
{
lst.add(temp);
}
}
num = lst.toArray();
}
public static void main(String[] args) {
//System.out.println("second");
new Num2().find(num);
}
private void find(Object[] data)
{
long time = System.currentTimeMillis()/1000;
for(int i=0;i<data.length;i++)
{
if(map.containsKey(data[i]))
{
int t=map.get(data[i]);
map.put((Integer)data[i], ++t);
}
else
{
map.put((Integer)data[i], 1);
}
}
int max = java.util.Collections.max(map.values());
for(Integer key:map.keySet())
{
if(map.get(key)==max)
{
System.out.println("number:"+key+" value:"+max);
}
}
System.out.println(time-(System.currentTimeMillis()/1000));
}
}
这么点数据能说明什么问题啊,起码几十万个数才行啊
测试了一下,900000*21=18900000的数据(约一千九百万),再多就报错了,应该是内存的问题,这个不关心了。
MAX_number:11 MAX_value:5400000
cost:1062ms
qvjing520 的速度比楼上稍好
61 楼
clufeng
2010-10-09
public static void findRepeatMaxValue(int[] arr) { long time1 = System.nanoTime(); HashMap<Integer, Integer> box = new HashMap<Integer, Integer>(); int maxValue = 0; int maxCount = 0; for (int i = 0; i < arr.length; i++) { Integer count = box.get(arr[i]); box.put(arr[i], count == null ? 1 : ++count); int newCount = box.get(arr[i]); if(newCount > maxCount) { maxCount = newCount; maxValue = arr[i]; } } long time2 = System.nanoTime(); System.out.println("findRepeatMaxValue time is " + ((time2 - time1) / 1000000.0) + "ms"); System.out.println("maxValue : " + maxValue +" maxCount : " + maxCount); } public static void main(String[] args) { Random rand = new Random(); int arr[] = new int[1000000]; for (int i = 0; i < arr.length; i++) { arr[i] = rand.nextInt(100); } findRepeatMaxValue(arr); }
测试结果:
测试数量:1000000
findRepeatMaxValue time is 146.057722ms
maxValue : 50 maxCount : 10261
60 楼
lewisw
2010-10-09
qvjing520 写道
我测了一下感觉效率换可以,希望大家指教
public class Num2 {
//找出一个数组中重复元素最多的元素并打印出来
private static int[] num1 = {1, 2, 2 ,3,4,4,4,5,6,6,6,6,7,10,11,11,11,11,11,11,15};
private static Object[] num =null;
Map<Integer,Integer> map = new HashMap<Integer,Integer>();
static
{
List lst = new ArrayList();
for(int i=0;i<10000;i++)
{
for(Integer temp:num1)
{
lst.add(temp);
}
}
num = lst.toArray();
}
public static void main(String[] args) {
//System.out.println("second");
new Num2().find(num);
}
private void find(Object[] data)
{
long time = System.currentTimeMillis()/1000;
for(int i=0;i<data.length;i++)
{
if(map.containsKey(data[i]))
{
int t=map.get(data[i]);
map.put((Integer)data[i], ++t);
}
else
{
map.put((Integer)data[i], 1);
}
}
int max = java.util.Collections.max(map.values());
for(Integer key:map.keySet())
{
if(map.get(key)==max)
{
System.out.println("number:"+key+" value:"+max);
}
}
System.out.println(time-(System.currentTimeMillis()/1000));
}
}
public class Num2 {
//找出一个数组中重复元素最多的元素并打印出来
private static int[] num1 = {1, 2, 2 ,3,4,4,4,5,6,6,6,6,7,10,11,11,11,11,11,11,15};
private static Object[] num =null;
Map<Integer,Integer> map = new HashMap<Integer,Integer>();
static
{
List lst = new ArrayList();
for(int i=0;i<10000;i++)
{
for(Integer temp:num1)
{
lst.add(temp);
}
}
num = lst.toArray();
}
public static void main(String[] args) {
//System.out.println("second");
new Num2().find(num);
}
private void find(Object[] data)
{
long time = System.currentTimeMillis()/1000;
for(int i=0;i<data.length;i++)
{
if(map.containsKey(data[i]))
{
int t=map.get(data[i]);
map.put((Integer)data[i], ++t);
}
else
{
map.put((Integer)data[i], 1);
}
}
int max = java.util.Collections.max(map.values());
for(Integer key:map.keySet())
{
if(map.get(key)==max)
{
System.out.println("number:"+key+" value:"+max);
}
}
System.out.println(time-(System.currentTimeMillis()/1000));
}
}
这么点数据能说明什么问题啊,起码几十万个数才行啊
59 楼
lewisw
2010-10-09
evanz 写道
单编程角度,还是TreeMap吧,自己实现一个Comparator,一个for循环搞定
可能是个最好的解决方法
58 楼
qvjing520
2010-10-09
我测了一下感觉效率换可以,希望大家指教
public class Num2 {
//找出一个数组中重复元素最多的元素并打印出来
private static int[] num1 = {1, 2, 2 ,3,4,4,4,5,6,6,6,6,7,10,11,11,11,11,11,11,15};
private static Object[] num =null;
Map<Integer,Integer> map = new HashMap<Integer,Integer>();
static
{
List lst = new ArrayList();
for(int i=0;i<10000;i++)
{
for(Integer temp:num1)
{
lst.add(temp);
}
}
num = lst.toArray();
}
public static void main(String[] args) {
//System.out.println("second");
new Num2().find(num);
}
private void find(Object[] data)
{
long time = System.currentTimeMillis()/1000;
for(int i=0;i<data.length;i++)
{
if(map.containsKey(data[i]))
{
int t=map.get(data[i]);
map.put((Integer)data[i], ++t);
}
else
{
map.put((Integer)data[i], 1);
}
}
int max = java.util.Collections.max(map.values());
for(Integer key:map.keySet())
{
if(map.get(key)==max)
{
System.out.println("number:"+key+" value:"+max);
}
}
System.out.println(time-(System.currentTimeMillis()/1000));
}
}
public class Num2 {
//找出一个数组中重复元素最多的元素并打印出来
private static int[] num1 = {1, 2, 2 ,3,4,4,4,5,6,6,6,6,7,10,11,11,11,11,11,11,15};
private static Object[] num =null;
Map<Integer,Integer> map = new HashMap<Integer,Integer>();
static
{
List lst = new ArrayList();
for(int i=0;i<10000;i++)
{
for(Integer temp:num1)
{
lst.add(temp);
}
}
num = lst.toArray();
}
public static void main(String[] args) {
//System.out.println("second");
new Num2().find(num);
}
private void find(Object[] data)
{
long time = System.currentTimeMillis()/1000;
for(int i=0;i<data.length;i++)
{
if(map.containsKey(data[i]))
{
int t=map.get(data[i]);
map.put((Integer)data[i], ++t);
}
else
{
map.put((Integer)data[i], 1);
}
}
int max = java.util.Collections.max(map.values());
for(Integer key:map.keySet())
{
if(map.get(key)==max)
{
System.out.println("number:"+key+" value:"+max);
}
}
System.out.println(time-(System.currentTimeMillis()/1000));
}
}
57 楼
lewisw
2010-10-09
<div class="quote_title">leves 写道</div>
<div class="quote_div">
<p> </p>
<pre name="code" class="java">public static void find3(int[] arr){
HashMap<Integer,Integer> hm=new HashMap<Integer, Integer>();
for(int i=0;i<arr.length;i++){
if(hm.containsKey(arr[i])) {
int count=hm.get(arr[i]);
hm.put(arr[i], ++count);
}else{
hm.put(arr[i],1);
}
}
Iterator<Entry<Integer, Integer>> it=hm.entrySet().iterator();
int pre=0;
int max=arr[0];
while(it.hasNext()) {
Entry<Integer, Integer> en=it.next();
int key=en.getKey();
int val=en.getValue();
if(val>pre){
pre=val;
max=key;
}
}
//System.out.println(max);
}</pre>
<p> </p>
<p>用Hash的方式写的,为什么测试的时候速度上反而是最慢的</p>
</div>
<p> </p>
<p>这个map创建的时候一定要考虑他的两个构造参数(int initialCapacity, float loadFactor),非常重要, 尤其数据量大的时候, 不然老是在哪里构造新的大的数组然后拷贝,越大越慢, 最后慢死你。</p>
<p>HashMap的内部使用数组+链表保存数据, 默认的initialCapacity=16, loadFactor = 0.75, 具体的自己参考文档。</p>
<p> </p>
<p>你可以这样<span style="">HashMap<Integer,Integer> hm=<span class="keyword" style="color: #7f0055; font-weight: bold;">new</span><span style="color: black;"> HashMap<Integer, Integer>(arr.length);</span></span></p>
<p>当然一定要确认这个arr.length是不是太大了,内存溢出,数组的length在java里是int的,就是说最大值是4g, 你的内存大大,虚拟机能分配那么多也行,呵呵</p>
<div class="quote_div">
<p> </p>
<pre name="code" class="java">public static void find3(int[] arr){
HashMap<Integer,Integer> hm=new HashMap<Integer, Integer>();
for(int i=0;i<arr.length;i++){
if(hm.containsKey(arr[i])) {
int count=hm.get(arr[i]);
hm.put(arr[i], ++count);
}else{
hm.put(arr[i],1);
}
}
Iterator<Entry<Integer, Integer>> it=hm.entrySet().iterator();
int pre=0;
int max=arr[0];
while(it.hasNext()) {
Entry<Integer, Integer> en=it.next();
int key=en.getKey();
int val=en.getValue();
if(val>pre){
pre=val;
max=key;
}
}
//System.out.println(max);
}</pre>
<p> </p>
<p>用Hash的方式写的,为什么测试的时候速度上反而是最慢的</p>
</div>
<p> </p>
<p>这个map创建的时候一定要考虑他的两个构造参数(int initialCapacity, float loadFactor),非常重要, 尤其数据量大的时候, 不然老是在哪里构造新的大的数组然后拷贝,越大越慢, 最后慢死你。</p>
<p>HashMap的内部使用数组+链表保存数据, 默认的initialCapacity=16, loadFactor = 0.75, 具体的自己参考文档。</p>
<p> </p>
<p>你可以这样<span style="">HashMap<Integer,Integer> hm=<span class="keyword" style="color: #7f0055; font-weight: bold;">new</span><span style="color: black;"> HashMap<Integer, Integer>(arr.length);</span></span></p>
<p>当然一定要确认这个arr.length是不是太大了,内存溢出,数组的length在java里是int的,就是说最大值是4g, 你的内存大大,虚拟机能分配那么多也行,呵呵</p>
56 楼
Crusader
2010-10-09
hikaru1012 写道
sunhj000java 写道
我认为这道题的关键是如何遍历这个数据集合,如果能不用遍历集合而找出出现最多的次数的数字是这道题的关键。
我们可以用hashmap保存数据出现的个数,并且用两个变量保存出现最多的次数(max1)和次多的次数(max2),当剩下的数据个数小于max1-max2,那么我们就找出了这个数字了。
最优为n/2 最差为n
我们可以用hashmap保存数据出现的个数,并且用两个变量保存出现最多的次数(max1)和次多的次数(max2),当剩下的数据个数小于max1-max2,那么我们就找出了这个数字了。
最优为n/2 最差为n
如何维护记录出现次数最多和次多的变量要比实现问题本身困难得多吧?
+1
无论在时间和空间上都会耗费很多额外的消耗来维护“最多”与“次多”,我认为大多数情况可能都会得不偿失。。
55 楼
CrystalBear
2010-10-09
hash就可以了,用考虑这么复杂么
54 楼
chenlixun
2010-10-09
zhzhwe 写道
public static void main(String[] args) {
int arr[] = { 1, 2, 5, 5, 6, 6, 9, 5, 3, 3, 4, 4, 4, 4, 5, 2, 2, 2, 2,
2, 7, 7, 7, 7, 7, 7 };
//定义MAP KEY表示存放的数字,VALUES表示出现的次数
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
for (int n : arr) {
if (map.containsKey(n)) {
map.put(n, map.get(n) + 1);
} else {
map.put(n, 1);
}
}
//定义最大次数变量
int max = 1;
//遍厉MAP查出最大次数
for (Map.Entry<Integer, Integer> m : map.entrySet()) {
if(m.getValue() > max)
max = m.getValue();
}
for (Map.Entry<Integer, Integer> m : map.entrySet()) {
if(m.getValue() == max)
{
System.out.println(m.getKey() + " 出现了 " + m.getValue() + " 次.");
}
}
int arr[] = { 1, 2, 5, 5, 6, 6, 9, 5, 3, 3, 4, 4, 4, 4, 5, 2, 2, 2, 2,
2, 7, 7, 7, 7, 7, 7 };
//定义MAP KEY表示存放的数字,VALUES表示出现的次数
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
for (int n : arr) {
if (map.containsKey(n)) {
map.put(n, map.get(n) + 1);
} else {
map.put(n, 1);
}
}
//定义最大次数变量
int max = 1;
//遍厉MAP查出最大次数
for (Map.Entry<Integer, Integer> m : map.entrySet()) {
if(m.getValue() > max)
max = m.getValue();
}
for (Map.Entry<Integer, Integer> m : map.entrySet()) {
if(m.getValue() == max)
{
System.out.println(m.getKey() + " 出现了 " + m.getValue() + " 次.");
}
}
根据楼上的做了修改如下, 请大家批批.
public static void main(String[] args) {
long startTime = 0;
long endTime = 0;
startTime = System.currentTimeMillis();
int arr[] = { 1, 2, 2, 5, 7, 5, 6, 6, 9, 5, 3, 3, 4, 7, 4, 4, 4, 5, 2,
2, 2, 2, 2, 7, 7, 7, 7, 7, 7, 7, 7 };
for(int i = 0; i < 1; i++)
Example.findMaxTime(arr);
endTime = System.currentTimeMillis();
System.out.println("总花费时间:" + (endTime - startTime) + " ms.");
}
private static void findMaxTime(int arr[]) {
// 定义MAP KEY表示存放的数字,VALUES表示出现的次数
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
// 定义最大次数变量
int max = 0;
// 定义出现最多次数的数字
int maxValue = 0;
// 定义临时交换变量
int temp = 0;
for (int n : arr) {
if (map.containsKey(n)) {
map.put(n, map.get(n) + 1);
} else {
map.put(n, 1);
}
temp = map.get(n);
if (temp > max) {
max = temp;
maxValue = n;
}
}
System.out.println("出现最多的数字:" + maxValue + ";出现次数: " + max + " 次。");
}
53 楼
zhzhwe
2010-10-09
public static void main(String[] args) {
int arr[] = { 1, 2, 5, 5, 6, 6, 9, 5, 3, 3, 4, 4, 4, 4, 5, 2, 2, 2, 2,
2, 7, 7, 7, 7, 7, 7 };
//定义MAP KEY表示存放的数字,VALUES表示出现的次数
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
for (int n : arr) {
if (map.containsKey(n)) {
map.put(n, map.get(n) + 1);
} else {
map.put(n, 1);
}
}
//定义最大次数变量
int max = 1;
//遍厉MAP查出最大次数
for (Map.Entry<Integer, Integer> m : map.entrySet()) {
if(m.getValue() > max)
max = m.getValue();
}
for (Map.Entry<Integer, Integer> m : map.entrySet()) {
if(m.getValue() == max)
{
System.out.println(m.getKey() + " 出现了 " + m.getValue() + " 次.");
}
}
int arr[] = { 1, 2, 5, 5, 6, 6, 9, 5, 3, 3, 4, 4, 4, 4, 5, 2, 2, 2, 2,
2, 7, 7, 7, 7, 7, 7 };
//定义MAP KEY表示存放的数字,VALUES表示出现的次数
Map<Integer, Integer> map = new HashMap<Integer, Integer>();
for (int n : arr) {
if (map.containsKey(n)) {
map.put(n, map.get(n) + 1);
} else {
map.put(n, 1);
}
}
//定义最大次数变量
int max = 1;
//遍厉MAP查出最大次数
for (Map.Entry<Integer, Integer> m : map.entrySet()) {
if(m.getValue() > max)
max = m.getValue();
}
for (Map.Entry<Integer, Integer> m : map.entrySet()) {
if(m.getValue() == max)
{
System.out.println(m.getKey() + " 出现了 " + m.getValue() + " 次.");
}
}
52 楼
ihc
2010-10-08
使用linkedList 也行吧,将数组元素和出现次数封装成一个内部类,把次数最多的放在linkedList的第一个位置, 每次拿循环到的元素的map值跟linkedlist中的第一个元素比较,比它大的话插到第一个位置,最后取出第一个元素就行了吧,因为linkedlist的增删操作比较快捷 应该效率点。
51 楼
xcv4javaeye
2010-10-08
<div class="quote_title">xcv4javaeye 写道</div>
<div class="quote_div">
<div class="quote_title">iamlotus 写道</div>
<div class="quote_div">用Hash的各位算过Hash的开销没有?不能光考虑时间复杂度,还要考虑空间复杂度。如果没有更多附加空间怎么办?<br>既然是电面,首先问明白限制条件,数据量是多大,K/M/G/T?重复数据占比?有没有附加空间/时间要求?<br>数据量K,随便怎么搞。<br>数据量M,QuickSort<br>数据量G,MergeSort了,因为内存不够要用IO<br>数据量T,MapReduce,否则单机处理不过来<br><br>重复数据非常多,考虑用Hash {data->repeatCount},以空间换时间<br>重复数据少,还是老老实实排序吧,Hash的空间开销蛮大的,而且resize相当慢。<br><br>复杂度分析来说,每个数据至少访问一遍,不可能有比O(n)更好的,这就是个考实现的题。既然是实现,当然要搞清楚环境,哪有闷着头写程序的道理。</div>
<p><br><br><br> 同意,你考虑了很多实现中的问题。但是还是没有回答为什么lz的代码,hash比qsort慢了一个数量级?理论上hash平均复杂度是O(n),qsort是O(nlogn)<br> 我开始认为是Sun的jdk的hash实现比较复杂,导致线性复杂度的常系数比较大,使得在小数据量的时候O(n)的时间大于O(nlogn),但我跑了一下,没用楼主的qsort,而用的是JDK1.6的Arrays.sort,得出数据如下,可以观察,qsort根本就是线性的....这到底是为什么啊为什么...<br> 我又单独跑了一下Arrays.sort,发现还是线性的...<br><br>代码如下:</p>
<pre name="code" class="java">import java.util.Arrays;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map.Entry;
/**
* 找出数组中重复次数最多的元素并打印
*
*/
public class Problem_3 {
// 先快速排序后循环查找 O( n*log2(n) + n )
public static void find1(int[] arr) {
Arrays.sort(arr);
int max = arr[0];
int pre = 1;
int now = 1;
for (int i = 0; i < (arr.length - 1); i++) {
if (arr[i] == arr[i + 1])
now++;
else {
if (now >= pre) {
pre = now;
now = 1;
max = arr[i];
}
}
}
}
// 嵌套循环查找 O(n*n)
public static void find2(int[] arr) {
int pre = 0;
int max = arr[0];
for (int i = 0; i < arr.length; i++) {
int now = 0;
for (int j = 0; j < arr.length; j++) {
if (arr[i] == arr[j]) {
now++;
}
}
if (now >= pre) {
max = arr[i];
pre = now;
}
}
}
// 通过 Hash 方式
public static void find3(int[] arr) {
HashMap<Integer, Integer> hm = new HashMap<Integer, Integer>(10000);
for (int i = 0; i < arr.length; i++) {
if (hm.containsKey(arr[i])) {
int count = hm.get(arr[i]);
hm.put(arr[i], ++count);
} else {
hm.put(arr[i], 1);
}
}
Iterator<Entry<Integer, Integer>> it = hm.entrySet().iterator();
int pre = 0;
int max = arr[0];
while (it.hasNext()) {
Entry<Integer, Integer> en = it.next();
int key = en.getKey();
int val = en.getValue();
if (val > pre) {
pre = val;
max = key;
}
}
}
public static void main(String args[]) {
for (int n = 100000; n < 100000000; n += 100000) {
invoke(n);
}
}
private static void invoke(int n) {
// // 数据量800 重复元素多,查找时候分别是: 46 3680 195
// int arr2[] = new int[800];
// for (int i = 0; i < 800; i++) {
// arr2[i] = (int) (Math.random() * 800);
// }
// 数据量800 重复元素少,查找时间分别是 82 3727 360
System.out.print("n=" + n+"\t\t");
int arr[][] = new int[100][n];
for (int j = 0; j < arr.length; j++) {
for (int i = 0; i < n; i++) {
arr[j][i] = (int) (Math.random() * n);
}
}
long start, end;
// start = System.currentTimeMillis();
// for (int i = 0; i < 1000; i++)
// find2(arr);
// end = System.currentTimeMillis();
// System.out.println(end - start);
start = System.currentTimeMillis();
for (int i = 0; i < 100; i++)
find3(arr[i]);
end = System.currentTimeMillis();
System.out.print("hash:" + (end - start)+ "\t\t");
start = System.currentTimeMillis();
for (int i = 0; i < 100; i++)
find1(arr[i]);
end = System.currentTimeMillis();
System.out.println("sort:" + (end - start));
}
}</pre>
<p> </p>
<p> </p>
</div>
<p>有人研究了这个问题吗?为啥么快排比hashmap快这么多?我自己试了一下JDK的Arrays.sort,接近线性的时间性能,参见文章:http://xcv4javaeye.iteye.com/blog/779032 。为啥么啊为什么?</p>
<div class="quote_div">
<div class="quote_title">iamlotus 写道</div>
<div class="quote_div">用Hash的各位算过Hash的开销没有?不能光考虑时间复杂度,还要考虑空间复杂度。如果没有更多附加空间怎么办?<br>既然是电面,首先问明白限制条件,数据量是多大,K/M/G/T?重复数据占比?有没有附加空间/时间要求?<br>数据量K,随便怎么搞。<br>数据量M,QuickSort<br>数据量G,MergeSort了,因为内存不够要用IO<br>数据量T,MapReduce,否则单机处理不过来<br><br>重复数据非常多,考虑用Hash {data->repeatCount},以空间换时间<br>重复数据少,还是老老实实排序吧,Hash的空间开销蛮大的,而且resize相当慢。<br><br>复杂度分析来说,每个数据至少访问一遍,不可能有比O(n)更好的,这就是个考实现的题。既然是实现,当然要搞清楚环境,哪有闷着头写程序的道理。</div>
<p><br><br><br> 同意,你考虑了很多实现中的问题。但是还是没有回答为什么lz的代码,hash比qsort慢了一个数量级?理论上hash平均复杂度是O(n),qsort是O(nlogn)<br> 我开始认为是Sun的jdk的hash实现比较复杂,导致线性复杂度的常系数比较大,使得在小数据量的时候O(n)的时间大于O(nlogn),但我跑了一下,没用楼主的qsort,而用的是JDK1.6的Arrays.sort,得出数据如下,可以观察,qsort根本就是线性的....这到底是为什么啊为什么...<br> 我又单独跑了一下Arrays.sort,发现还是线性的...<br><br>代码如下:</p>
<pre name="code" class="java">import java.util.Arrays;
import java.util.HashMap;
import java.util.Iterator;
import java.util.Map.Entry;
/**
* 找出数组中重复次数最多的元素并打印
*
*/
public class Problem_3 {
// 先快速排序后循环查找 O( n*log2(n) + n )
public static void find1(int[] arr) {
Arrays.sort(arr);
int max = arr[0];
int pre = 1;
int now = 1;
for (int i = 0; i < (arr.length - 1); i++) {
if (arr[i] == arr[i + 1])
now++;
else {
if (now >= pre) {
pre = now;
now = 1;
max = arr[i];
}
}
}
}
// 嵌套循环查找 O(n*n)
public static void find2(int[] arr) {
int pre = 0;
int max = arr[0];
for (int i = 0; i < arr.length; i++) {
int now = 0;
for (int j = 0; j < arr.length; j++) {
if (arr[i] == arr[j]) {
now++;
}
}
if (now >= pre) {
max = arr[i];
pre = now;
}
}
}
// 通过 Hash 方式
public static void find3(int[] arr) {
HashMap<Integer, Integer> hm = new HashMap<Integer, Integer>(10000);
for (int i = 0; i < arr.length; i++) {
if (hm.containsKey(arr[i])) {
int count = hm.get(arr[i]);
hm.put(arr[i], ++count);
} else {
hm.put(arr[i], 1);
}
}
Iterator<Entry<Integer, Integer>> it = hm.entrySet().iterator();
int pre = 0;
int max = arr[0];
while (it.hasNext()) {
Entry<Integer, Integer> en = it.next();
int key = en.getKey();
int val = en.getValue();
if (val > pre) {
pre = val;
max = key;
}
}
}
public static void main(String args[]) {
for (int n = 100000; n < 100000000; n += 100000) {
invoke(n);
}
}
private static void invoke(int n) {
// // 数据量800 重复元素多,查找时候分别是: 46 3680 195
// int arr2[] = new int[800];
// for (int i = 0; i < 800; i++) {
// arr2[i] = (int) (Math.random() * 800);
// }
// 数据量800 重复元素少,查找时间分别是 82 3727 360
System.out.print("n=" + n+"\t\t");
int arr[][] = new int[100][n];
for (int j = 0; j < arr.length; j++) {
for (int i = 0; i < n; i++) {
arr[j][i] = (int) (Math.random() * n);
}
}
long start, end;
// start = System.currentTimeMillis();
// for (int i = 0; i < 1000; i++)
// find2(arr);
// end = System.currentTimeMillis();
// System.out.println(end - start);
start = System.currentTimeMillis();
for (int i = 0; i < 100; i++)
find3(arr[i]);
end = System.currentTimeMillis();
System.out.print("hash:" + (end - start)+ "\t\t");
start = System.currentTimeMillis();
for (int i = 0; i < 100; i++)
find1(arr[i]);
end = System.currentTimeMillis();
System.out.println("sort:" + (end - start));
}
}</pre>
<p> </p>
<p> </p>
</div>
<p>有人研究了这个问题吗?为啥么快排比hashmap快这么多?我自己试了一下JDK的Arrays.sort,接近线性的时间性能,参见文章:http://xcv4javaeye.iteye.com/blog/779032 。为啥么啊为什么?</p>
发表评论
-
计算机网络试卷
2011-01-03 00:03 2112计算机网络试卷参考 ... -
java虚拟机学习笔记之垃圾收集(下)
2010-12-12 17:45 711★引用计数收集器 这种方法中,堆中每个对象都有一个引用计 ... -
java虚拟机学习笔记之垃圾收集(上)
2010-12-12 17:44 773java程序是运行在java虚拟机当中的,在java虚拟机 ... -
Java中应用的的设计模式 - 行为模式
2010-11-28 18:21 967Behavioral patterns Chain o ... -
Java中应用的的设计模式 - 结构模式
2010-11-28 18:20 881Structural patterns Adapter ... -
Java中应用的的设计模式 - 创建模式
2010-11-28 18:15 741Creational patterns Abst ... -
commons-dbutils
2010-10-31 16:52 1033AbstractKeyedHandler< ... -
Java7新特性之增强的异常处理功能
2010-05-19 14:01 858此次变动增加了两处对异常处理机制的细微增强: ... -
Java中各类Cache机制实现解决方案
2010-04-26 19:13 666在Java中,不同的类都有自己单独的Cache机制,实现的方法 ... -
Java7 - 新特性之对集合类的语言支持
2010-04-25 19:51 1878Java将对创建集合类提供第一类语言支持,也就是对集合类的操作 ... -
各类数值型数据间的混合运算
2010-04-21 14:55 864自动类型转换 整型、实型、字符型数据可以混合运算。运算中,不 ... -
Javaclass文件结构
2010-04-21 14:54 838Magic:该 项存放了一个 Java 类文件的魔数(magi ... -
Java核心API需要掌握的程度
2010-04-21 14:45 749Java的核心API是非常庞大的,这给开发者来说带来了很大的方 ... -
Java偏向锁实现原理(BiasedLocking)
2010-04-21 14:44 1122轻量级锁也是一种多线程优化,它与偏向锁的区别在于,轻量级锁是通 ... -
java 反射机制
2008-10-01 14:33 779Java提供了一套机制 ... -
Java安装后JDK/bin目录下的众多exe文件的用途
2008-10-27 08:26 1073Java安装后JDK/bin目录下的众多exe文件 ... -
Java栈与堆 (精通java者必懂概念)
2008-11-24 10:31 7211. 栈(stack)与堆(heap)都是Java用来在Ram ...
相关推荐
今天跟大家分享一道阿里的算法面试题。 题目描述 给定一个正整数nnn,把它拆分为若干个数的和,记这若干个数的积为MMM,求MMM的最大值。 题目分析 这道题正常的思路是使用动态规划算法。 假设 dp[n]dp[n]dp[n] 为正...
这本书不仅提供了解题思路,还对每一道题目的不同解法进行了详尽的解析,有的题目甚至给出了多种解法,帮助读者开阔思维,理解算法的多样性。通过这些内容的学习,读者能够提升解决实际问题的能力,增加面试成功的...
5. 实战经验:分享阿里巴巴内部项目中的算法应用,以及面试过程中可能遇到的问题。 三、代码示例 配套的代码示例通常会以Python、Java、C++等主流编程语言编写,每个例子都会对应一个或多个LeetCode题目,旨在帮助...
【阿里技术面试题解析】 ...以上是阿里集团不同职位的面试题解析,涉及了并发编程、网络编程、系统设计、数据结构、算法等多个领域的知识点。这些题目展示了阿里集团对于技术人才全面而深入的技术要求。
总结起来,本文介绍了进程创建的基本概念,特别是`fork()`函数的工作方式,以及正则表达式的使用和匹配规则,同时涉及了一道逻辑推理题。对于研发面试来说,这些知识点涵盖了操作系统、编程基础和逻辑思维能力,都是...
这份资料涵盖了百度、腾讯、阿里、华为、京东、美团、拼多多、携程、蚂蚁金服、唯品会、字节跳动、阿里云和哔哩哔哩(B站)等多家知名企业的面试题目。 首先,我们要明白这些大厂在面试时通常关注哪些方面: 1. ...
阿里巴巴面试题leetcode CharSimpleAlgorithm 字符串算法 WordConversion 该类是用于改变字母的大小写,使一...ps:该类的实际意义没有想到,是我在浏览LeetCode评论区的时候看到的一道阿里巴巴面试题,所以就实现了一下
这些面试题展示了面试者需要掌握的关键技能,包括但不限于算法分析、数据结构的应用、问题解决能力以及对基础理论的深入理解。在实际工作中,这些知识对于优化代码性能、解决复杂问题以及进行系统设计都至关重要。
《面试算法练习等级攻略》- LeetCode 题解与《剑指Offer》题解 Java 版本 在准备IT行业的面试,特别是算法相关的职位时,LeetCode 和《剑指Offer》是两个不可或缺的资源。这份压缩包包含了这两个平台上的算法问题的...
3. **算法题解答**:技术面试环节通常会有一道算法题,需在规定时间内完成。 - 建议策略:先快速理解题目要求,再构思解题思路,最后编码实现。 4. **沟通技巧**: - 在面试过程中保持自信,即使遇到不懂的问题也...
- 第19题:这是一道关于组合计数的问题,询问的是在一定条件下不同颜色球的组合数。 4. **系统负载与性能监控**: - 第22题:题目涉及系统负载的概念,指出了一分钟、五分钟和十五分钟的平均负载,负载越低说明...
3. **实战演练**:面试中可能会给出一道算法题供现场解答,通常时间为20分钟左右。 - **建议**:提前熟悉常见的数据结构与算法,提高解决问题的能力。 #### 六、综合建议 1. **技术积累**:不断学习新知识,提高...
面试中,面试官通常会出一些算法题目,如排序、查找、图论、动态规划等。对于数据结构,链表、队列、栈、树、哈希表等的理解及其应用是考察的重点。熟练掌握这些基本功,能帮助你在解决问题时快速找到最优解。 六、...
本资源精心收录了多家知名企业(包括奇安信、贝壳找房、小米、游卡、vivo、阿里巴巴、爱奇艺、百度、猿辅导、中兴等)的C++方向笔试题,覆盖从2020年至2022年的秋招和校招题目。这些题目不仅考察了C++的基础知识,如...
11. **面试经验**:除了笔试,如阿里巴巴的校园招聘试卷,也可能包含面试技巧和常见面试问题的讨论。 准备这些笔试的关键在于广泛学习和深入理解计算机科学的基本原理,同时保持对新技术的关注和实践。通过模拟题和...
- 谷歌等公司在面试时可能会考察系统设计能力和算法题解答能力。 3. **公司选择**: - 实习机会能够增加内部转正的可能性,因此选择一家理想的公司实习至关重要。 - 创业公司和大型企业各有优势,可根据个人职业...
第一篇 面试题 ................................................................................ 8 1.1. 简介 ................................................................................................
根据提供的文件信息,本文将对2012年各大IT公司如百度、阿里巴巴等的笔试题目进行总结与解析。这些题目通常涵盖了计算机科学的基础知识、算法设计与分析、数据结构等多个方面,对于准备进入IT行业的求职者来说具有...