leetcode-49 Group Anagrams 同位词字典序排序

问题描述:

Given an array of strings,group anagrams together.

For example, given: ["eat", "tea","tan", "ate", "nat", "bat"]
Return:

[

  ["ate","eat","tea"],

 ["nat","tan"],

  ["bat"]

]

Note:

  1. For the return value, each inner list's elements must follow the lexicographic order.
  2. All inputs will be in lower-case.

Update (2015-08-09):
The signature of the function had been updated to return List<List<String>> insteadof List<String>, as suggested here. If you still see your function signature return a List<String>,please click the reload button  to reset your code definition.

 

问题分析:

字典序排序的方法有很多,这里图方便利用了集合中的sort方法进行排序。

查找匹配问题最好使用HashMap;

 

代码:

public class Solution {
    public List<List<String>> groupAnagrams(String[] strs) {
        List<List<String>>result = new ArrayList<>();
        if(strs == null || strs.length == 0)
           return result;
        //将字典序的字符串作为key,将其同位词组转到一个List中存储到HashMap中
        HashMap<String,List<String>>map = new HashMap<>();
       
        for(int i = 0; i < strs.length; i++) {
           char[] chars = strs[i].toCharArray();
           // 字典序排序
           Arrays.sort(chars);
           String temp = new String(chars);
           
           if (!map.containsKey(temp)) {
               List<String> result_list = new ArrayList<>();
               result_list.add(strs[i]);
               map.put(temp, result_list);
           } else {
               map.get(temp).add(strs[i]);
           }
        }
       
        //遍历map,对ArrayList进行字典序排序
        Iterator<Map.Entry<String,List<String>>>iterator = map.entrySet().iterator();
        while(iterator.hasNext()) {
           Map.Entry<String,List<String>> entry = iterator.next();
           List<String> temp_list = entry.getValue();
           Collections.sort(temp_list);
           result.add(temp_list);
        }       
        return result;
    }
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值