- 浏览: 137503 次
文章分类
- 全部博客 (189)
- Tree (14)
- Dynamic Programming (34)
- Array (20)
- Search (1)
- Hash (12)
- Backtracking (22)
- Divide and Conque (8)
- Greedy (6)
- Stack (12)
- software (0)
- List (7)
- Math (22)
- Two pointers (16)
- String (20)
- Linux (1)
- Sliding Window (4)
- Finite State Machine (1)
- Breadth-first Search (7)
- Graph (4)
- DFS (6)
- BFS (3)
- Sort (9)
- 基础概念 (2)
- 沟通表达 (0)
- Heap (2)
- Binary Search (15)
- 小结 (1)
- Bit Manipulation (8)
- Union Find (4)
- Topological Sort (1)
- PriorityQueue (1)
- Design Pattern (1)
- Design (1)
- Iterator (1)
- Queue (1)
最新评论
-
likesky3:
看了数据结构书得知并不是迭代和递归的区别,yb君的写法的效果是 ...
Leetcode - Graph Valid Tree -
likesky3:
迭代和递归的区别吧~
Leetcode - Graph Valid Tree -
qb_2008:
还有一种find写法:int find(int p) { i ...
Leetcode - Graph Valid Tree -
qb_2008:
要看懂这些技巧的代码确实比较困难。我是这么看懂的:1. 明白这 ...
Leetcode - Single Num II -
qb_2008:
public int singleNumber2(int[] ...
Leetcode - Single Num II
Given a string, we can "shift" each of its letter to its successive letter, for example: "abc" -> "bcd". We can keep "shifting" which forms the sequence:
"abc" -> "bcd" -> ... -> "xyz"
Given a list of strings which contains only lowercase alphabets, group all strings that belong to the same shifting sequence.
For example, given: ["abc", "bcd", "acef", "xyz", "az", "ba", "a", "z"],
Return:
[
["abc","bcd","xyz"],
["az","ba"],
["acef"],
["a","z"]
]
Note: For the return value, each inner list's elements must follow the lexicographic order.
[分析]
思路1:第一次按长度分组,然后在第一次的各分组中按照是否属于同一shifted sequence再次分组。如何判断是否属于同一shifted sequence呢? 两个字符串x 和 y,若对于任意i,满足y[i] - x[i] = y[0] - x[0], 注意要处理类似"az", "yx"这种情况。代码很长,实现也容易出错。
思路2:对于输入数组中的每个字符串,将其“归零”,即求出该字符串对应的shifted squence中的第一个字符串(a为起始字符)。维护一个哈希表,key为各group的“零值”,value是输入数组中属于该group的字符串。 参考https://leetcode.com/discuss/50358/my-concise-java-solution 佩服作者~
"abc" -> "bcd" -> ... -> "xyz"
Given a list of strings which contains only lowercase alphabets, group all strings that belong to the same shifting sequence.
For example, given: ["abc", "bcd", "acef", "xyz", "az", "ba", "a", "z"],
Return:
[
["abc","bcd","xyz"],
["az","ba"],
["acef"],
["a","z"]
]
Note: For the return value, each inner list's elements must follow the lexicographic order.
[分析]
思路1:第一次按长度分组,然后在第一次的各分组中按照是否属于同一shifted sequence再次分组。如何判断是否属于同一shifted sequence呢? 两个字符串x 和 y,若对于任意i,满足y[i] - x[i] = y[0] - x[0], 注意要处理类似"az", "yx"这种情况。代码很长,实现也容易出错。
思路2:对于输入数组中的每个字符串,将其“归零”,即求出该字符串对应的shifted squence中的第一个字符串(a为起始字符)。维护一个哈希表,key为各group的“零值”,value是输入数组中属于该group的字符串。 参考https://leetcode.com/discuss/50358/my-concise-java-solution 佩服作者~
public class Solution { // Method 2 public List<List<String>> groupStrings(String[] strings) { List<List<String>> ret = new ArrayList<List<String>>(); if (strings == null) return ret; HashMap<String, List<String>> map = new HashMap<String, List<String>>(); for (String s : strings) { int offset = s.charAt(0) - 'a'; String key = "a"; for (int i = 1; i < s.length(); i++) { char c = (char)(s.charAt(i) - offset); if (c < 'a') c += 26; key += c; } if (!map.containsKey(key)) { map.put(key, new ArrayList<String>()); } map.get(key).add(s); } for (List<String> list : map.values()) { Collections.sort(list); ret.add(list); } return ret; } // Method 1 public List<List<String>> groupStrings1(String[] strings) { List<List<String>> ret = new ArrayList<List<String>>(); if (strings == null) return ret; // group by length HashMap<Integer, List<String>> map = new HashMap<Integer, List<String>>(); for (String s : strings) { if (!map.containsKey(s.length())) { map.put(s.length(), new ArrayList<String>()); } map.get(s.length()).add(s); } // in each length group, group shifted strings HashMap<Integer, List<String>> map2 = new HashMap<Integer, List<String>>(); HashMap<String, List<String>> shiftedMap = new HashMap<String, List<String>>(); for (List<String> list : map.values()) { int i = 0; while (i < list.size()) { String curr = list.get(i++); int currLen = curr.length(); if (!map2.containsKey(currLen)) { map2.put(currLen, new ArrayList<String>()); map2.get(currLen).add(curr); shiftedMap.put(curr, new ArrayList<String>()); shiftedMap.get(curr).add(curr); } else { List<String> sameLenDiffGroupBase = map2.get(currLen); boolean findBuddy = false; for (String base : sameLenDiffGroupBase) { int diff = curr.charAt(0) - base.charAt(0); if (diff < 0) diff += 26; int j = 1; for (; j < currLen; j++) { if ((base.charAt(j) - 'a' + diff) % 26 + 'a' != curr.charAt(j)) break; } if (j == currLen) { shiftedMap.get(base).add(curr); // find the group which curr belong to findBuddy = true; break; } } if (!findBuddy) {//curr will start a new group map2.get(currLen).add(curr); shiftedMap.put(curr, new ArrayList<String>()); shiftedMap.get(curr).add(curr); } } } } // put each group in shiftedMap into result for (List<String> list : shiftedMap.values()) { Collections.sort(list); ret.add(list); } return ret; } }
发表评论
-
Leetcode - Integer to English Words
2015-09-04 20:53 1104[分析] 这题通过率之所以非常低是因为有很多corner ca ... -
Leetcode - LRU Cache
2015-09-03 18:31 542[分析] 自己使用HashMap + LinkedList/A ... -
Leetcode - Read N Characters Given Read4 II - Call Multiple Times
2015-08-28 09:00 852The API: int read4(char *buf) r ... -
Leetcode - Read N Characters Given Read4
2015-08-27 20:56 691The API: int read4(char *buf) r ... -
Leetcode - One Edit Distance
2015-08-27 20:26 542[分析] 两字符串相同或者长度差异大于等于2都不符合要求,只需 ... -
Leetcode - Max Points on a Line
2015-08-23 15:30 722[分析] 两条直线若包含一个公共点且斜率相同,则为同一条直线。 ... -
Leetcode - Fraction to Recurring Decimal
2015-08-23 10:05 468[分析] 处理int型整数运算时,为避免溢出,省事的做法就是内 ... -
Leetcode - Isomorphic Strings
2015-08-23 09:51 546[分析] 思路1:维护两个哈希表,char[] map, bo ... -
Leetcode - Palindrome Permutation
2015-08-22 16:24 1187[分析] 思路2让我大开眼界,顺便学习下BitSet~ [re ... -
Leetcode - Strobogrammatic Number
2015-08-22 10:48 1092A strobogrammatic number is a n ... -
Leetcode - Two Sum III - Data Structure Design
2015-08-21 10:30 695[分析] find的version1 版本注意num2Occu ... -
Leetcode - Longest Consecutive Sequence
2015-08-20 21:20 487[分析] base version说几句: 数组题一定要考虑重 ... -
Leetcode - Contains Duplicate II
2015-08-18 07:57 563Given an array of integers and ... -
Leetcode - Shortest Word Distance II
2015-08-18 07:25 1363This is a follow up of Shortest ... -
Leetcode - Repeated DNA Sequences
2015-08-17 13:43 416All DNA is composed of a series ... -
Leetcode - Two Sum
2015-07-20 10:14 354Given an array of integers, fin ... -
Leetcode - Text Justification
2015-06-22 18:29 384Given an array of words and a l ... -
Leetcode - Valid Number
2015-06-21 10:42 657Validate if a given string is n ... -
Leetcode - Substring with Contentaion of All Words
2015-06-18 10:01 511You are given a string, s, and ... -
Leetcode - Simplify Path
2015-06-17 21:58 426Given an absolute path for a fi ...
相关推荐
《在IDE中高效进行LeetCode练习:leetcode-editor的深度解析》 在编程学习与技能提升的过程中,LeetCode作为一款广受欢迎的在线编程挑战平台,帮助众多开发者锻炼算法思维,提高编程能力。而为了进一步提升练习体验...
leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源leetcode-习题集资源
leetcode-cli-plugins leetcode-cli 的第 3 方插件。 什么是 如何使用 如何使用 插件 名称 描述 增强的命令 按公司或标签过滤问题 list 不要在同一台计算机上使 Chrome 的会话过期 login 不要在同一台计算机上使 ...
在IDE中解决LeetCode问题,支持leetcode.com与leetcode-cn.com,满足基本的做题需求。 理论上支持: IntelliJ IDEA PhpStorm WebStorm PyCharm RubyMine AppCode CLion GoLand DataGrip Rider MPS Android Studio。
LeetCode Editor 7.4 版本的下载是一个名为 "leetcode-editor" 的压缩包文件。这个压缩包的导入过程非常简单,只需要将它直接拖入 IDEA 界面,IDEA 会自动识别并安装插件。这种方式使得安装过程无需额外的步骤,对于...
leetcode-习题集资源源代码leetcode-习题集资源源代码leetcode-习题集资源源代码leetcode-习题集资源源代码leetcode-习题集资源源代码
~/.vscode/extensions/leetcode.vscode-leetcode-0.17.0/node_modules/vsc-leetcode-cli/bin/leetcode /usr/local/bin/leetcode 修改模板 open ~/.vscode/extensions/leetcode.vscode-leetcode-0.17.0/node_modules/...
解题思路思路和LeetCode-python 503.下一个更大元素 II一致,只是这里求的是下标的距离,而不是数值倒序搜索,用到栈,栈里存储索引情况1:若栈为
leetcode-cheat 的发布 它是什么 ? 这是一个chrome 扩展,可以帮助您更高效地使用 leetcode。您可以从 重要: leetcode-cheat 现在只支持中文版。 也就是说不完全支持leetcode.com,但是你可以用leetcode-cn.com代替...
`swift-Swif-LeetCode-Utils` 是一个实用工具库,它为Swift程序员提供了方便快捷的方法来处理这些问题。这个项目可以帮助你更高效地进行LeetCode上的编程练习,提升你的解决方案的可读性和简洁性。 首先,让我们...
java java_leetcode-115-distinct-subsquences
java java_leetcode-112-path-sum
java java_leetcode-101-symmetric-tree
java java_leetcode-100-same-tree
leetcode-问题-爬虫 目录由cd problems && npx leetcode-problems-crawler -r 1-10生成cd problems && npx leetcode-problems-crawler -r 1-10 用法 爬行问题1到5: $ npx leetcode-problem-crawler -r 1-5 爬行问题...
970. 强整数对数运算function powerfulIntegers(x: number, y: number, bound: number): numb
java java_leetcode-110-balanced-binary-tree
java java_leetcode-73-set-matrix-zeroes
java java_leetcode-113-path-sumII