当前位置: 技术问答>java相关
问一道算法题
来源: 互联网 发布时间:2015-08-23
本文导语: 有一个数组,里面存放了一系列数值,其中可能有相等的,如{1,2,3,2,3,4,1}。现在求一个算法,将该数组分成几组,将相同的数值放一块儿,how? | 给你个思路,先用Arrays.sort排序,再分组 ...
有一个数组,里面存放了一系列数值,其中可能有相等的,如{1,2,3,2,3,4,1}。现在求一个算法,将该数组分成几组,将相同的数值放一块儿,how?
|
给你个思路,先用Arrays.sort排序,再分组
|
字符串也可以用Arrays.sort阿
|
Your code is definitely inefficient.
This is an extremely simple problem. I give your some tips:
1. Use Hashtable instead of Vector;
2. Understanding equals() method in Object.
If you think careful above tips, you should know how to do that.
This is an extremely simple problem. I give your some tips:
1. Use Hashtable instead of Vector;
2. Understanding equals() method in Object.
If you think careful above tips, you should know how to do that.
|
不是我不想告诉你,是不想让你失去这个提高的机会!:)
|
不难吧
|
不难
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。