上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 28 下一页
摘要: 链接:https://leetcode-cn.com/problems/combination-sum-ii/ 代码(dfs) class Solution { public: vector<vector<int>> ans; vector<int> path; vector<vector<int> 阅读全文
posted @ 2020-07-06 15:24 景云ⁿ 阅读(46) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/combination-sum/ 代码(dfs) class Solution { public: vector<vector<int>> ans; vector<int> path; vector<vector<int>> c 阅读全文
posted @ 2020-07-06 15:13 景云ⁿ 阅读(45) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/count-and-say/ 代码 class Solution { public: string countAndSay(int n) { string ans = "1"; for (int i = 0; i < n - 1 阅读全文
posted @ 2020-06-27 16:17 景云ⁿ 阅读(50) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/sudoku-solver/ 代码 class Solution { public: bool row[9][9], col[9][9], cell[3][3][9]; void solveSudoku(vector<vecto 阅读全文
posted @ 2020-06-27 16:01 景云ⁿ 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/valid-sudoku/ 代码 class Solution { public: bool isValidSudoku(vector<vector<char>>& board) { bool st[9]; // 行 for ( 阅读全文
posted @ 2020-06-26 15:57 景云ⁿ 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/search-insert-position/ 代码 class Solution { public: int searchInsert(vector<int>& nums, int target) { if (nums.siz 阅读全文
posted @ 2020-06-26 15:44 景云ⁿ 阅读(55) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array/ 代码 class Solution { public: vector<int> searchRange(vecto 阅读全文
posted @ 2020-06-26 15:43 景云ⁿ 阅读(79) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/search-in-rotated-sorted-array/ 思路 找出两段;通过找出满足条件:第一段的数字都大于第一个数。 第一次二分找出分段点,第二次二分求解。 代码 class Solution { public: in 阅读全文
posted @ 2020-06-25 22:30 景云ⁿ 阅读(51) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/longest-valid-parentheses/ 思路 将整个序列分段,即刚刚不满足左括号数量大于等于右括号数量条件的情况;则任何一个合法序列在每个段内。 使用栈来存储位置。 代码 class Solution { publ 阅读全文
posted @ 2020-06-25 22:15 景云ⁿ 阅读(74) 评论(0) 推荐(0) 编辑
摘要: 链接:https://leetcode-cn.com/problems/next-permutation/ 代码 class Solution { public: void nextPermutation(vector<int>& nums) { int k = nums.size() - 1; w 阅读全文
posted @ 2020-06-25 21:59 景云ⁿ 阅读(48) 评论(0) 推荐(0) 编辑
上一页 1 ··· 9 10 11 12 13 14 15 16 17 ··· 28 下一页