« | August 2025 | » | 日 | 一 | 二 | 三 | 四 | 五 | 六 | | | | | | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | | | | | | | |
| 公告 |
本博客在此声明所有文章均为转摘,只做资料收集使用。并无其他商业用途。 |
Blog信息 |
blog名称: 日志总数:210 评论数量:205 留言数量:-19 访问次数:919777 建立时间:2007年5月10日 |

| |
[算法]实现对中文字符串数组按照音序排列 文章收藏, 网上资源, 软件技术, 电脑与网络
李小白 发表于 2007/7/19 10:34:37 |
lhwork 发表于 2006-8-23 9:45:16
public class SortComparator implements Comparator{ public int compare(Object o1,Object o2) { try{ byte[] buf1 = ((String) o1).getBytes("unicode"); byte[] buf2 = ((String) o2).getBytes("unicode"); int size = Math.min(buf1.length, buf2.length); for (int i = 0; i < size; i++) { if (buf1[i] < buf2[i]) return -1; else if (buf1[i] > buf2[i]) return 1; } return buf1.length - buf2.length; }catch(UnsupportedEncodingException ex) { return 0; } }}
调用:String[] str = {"北京","中国","亚运会"};Arrays.sort(str,new SortComparator());
for(int len=0;len<str.length;len++){ System.out.println(str[len]); }
|
|
|