daniel-lincoln-2HW7TKijAgc-unsplash.jpg
中等给你一个字符串数组,请你将 字母异位词 组合在一起。可以按任意顺序返回结果列表。

字母异位词 是由重新排列源单词的字母得到的一个新单词,所有源单词中的字母通常恰好只用一次。

示例 1:
输入: strs = [“eat”, “tea”, “tan”, “ate”, “nat”, “bat”]
输出: [[“bat”],[“nat”,”tan”],[“ate”,”eat”,”tea”]]

示例 2:
输入: strs = [“”]
输出: [[“”]]

示例 3:
输入: strs = [“a”]
输出: [[“a”]]

作者:力扣 (LeetCode)
链接:https://leetcode-cn.com/leetbook/read/top-interview-questions-medium/xvaszc/
来源:力扣(LeetCode)
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。

代码

  1. /**
  2. * @param {string[]} strs
  3. * @return {string[][]}
  4. */
  5. var groupAnagrams = function (strs) {
  6. if (strs.length === 1) {
  7. return [strs];
  8. }
  9. const ans = new Array();
  10. const map = new Map();
  11. for (let i = 0; i < strs.length; i++) {
  12. const t = [...strs[i]].sort().join();
  13. if (!map.get(t)) {
  14. map.set(t, [strs[i]]);
  15. } else {
  16. map.get(t).push(strs[i]);
  17. }
  18. }
  19. for (const key of map.keys()) {
  20. ans.push(map.get(key));
  21. }
  22. return ans;
  23. };

思路

没啥好说的,排序+散列表