摘要: 关联问题:排列1:46. Permutations, 排列2:47. Permutations II,组合:77. Combinations 问题: 给定数字1~n,求他们组成的第k个排列。 The set [1, 2, 3, ..., n] contains a total of n! uniqu 阅读全文
posted @ 2021-01-04 15:19 habibah_chang 阅读(77) 评论(0) 推荐(0) 编辑
摘要: 相关问题:10. Regular Expression Matching 问题: 正则表达中,给定匹配对象s,和模式串p,问是否匹配。 其中,* 可匹配任意长度字串,? 可匹配一个单位长度的字串。 Example 1: Input: s = "aa", p = "a" Output: false E 阅读全文
posted @ 2021-01-04 14:43 habibah_chang 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 关联问题:排列1:46. Permutations, 排列2:47. Permutations II 问题: 给定1~n,拿出其中k个元素,进行组合,求可得到组合的所有可能。 Example 1: Input: n = 4, k = 2 Output: [ [2,4], [3,4], [2,3], 阅读全文
posted @ 2021-01-04 09:29 habibah_chang 阅读(73) 评论(0) 推荐(0) 编辑