
深度优先搜索
文章平均质量分 79
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 473. Matchsticks to Square
原题网址:https://leetcode.com/problems/matchsticks-to-square/Remember the story of Little Match Girl? By now, you know exactly what matchsticks the little match girl has, please find out a way you c原创 2016-12-26 04:05:48 · 1493 阅读 · 0 评论 -
LeetCode 79. Word Search(单词查找)
原题网址:https://leetcode.com/problems/word-search/Given a 2D board and a word, find if the word exists in the grid.The word can be constructed from letters of sequentially adjacent cell, where原创 2016-05-22 05:21:03 · 1195 阅读 · 0 评论 -
LeetCode 77. Combinations(组合)
原题网址:https://leetcode.com/problems/combinations/Given two integers n and k, return all possible combinations of k numbers out of 1 ... n.For example,If n = 4 and k = 2, a solution is:[原创 2016-05-22 05:20:29 · 419 阅读 · 0 评论 -
LeetCode 365. Water and Jug Problem
原题网址:https://leetcode.com/problems/water-and-jug-problem/You are given two jugs with capacities x and y litres. There is an infinite amount of water supply available. You need to determine wheth原创 2016-06-25 05:28:10 · 1641 阅读 · 0 评论 -
最大半径问题
一个长度为n的数组,从中选取k个数字,若定义这k个数字的半径为排序后相邻两个数字之间的最小间隔,则k个数字所能达到的最大半径是多少?如果k = 1,则半径为无穷大。假设k > 0。方法一:深度优先搜索。class SolutionDFS { private int max = 0; public SolutionDFS(int[] nums, int k) { find(n原创 2016-06-25 03:09:28 · 700 阅读 · 0 评论 -
LeetCode 52. N-Queens II(N皇后)
原题网址:https://leetcode.com/problems/n-queens-ii/Follow up for N-Queens problem.Now, instead outputting board configurations, return the total number of distinct solutions.方法一:深度优先搜索,使用一原创 2016-05-21 06:27:12 · 965 阅读 · 0 评论 -
LeetCode 46. Permutations(排列)
原题网址:https://leetcode.com/problems/permutations/Given a collection of distinct numbers, return all possible permutations.For example,[1,2,3] have the following permutations:[1,2,3], [1,3原创 2016-05-21 04:49:55 · 367 阅读 · 0 评论 -
LeetCode 40. Combination Sum II(组合求和)
原题网址:https://leetcode.com/problems/combination-sum-ii/Given a collection of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to原创 2016-05-20 10:41:06 · 1500 阅读 · 0 评论 -
LeetCode 39. Combination Sum(组合求和)
原题网址:https://leetcode.com/problems/combination-sum/Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T.The原创 2016-05-20 10:40:51 · 1485 阅读 · 0 评论 -
LeetCode 37. Sudoku Solver(数读游戏)
原题网址:https://leetcode.com/problems/sudoku-solver/Write a program to solve a Sudoku puzzle by filling the empty cells.Empty cells are indicated by the character '.'.You may assume that th原创 2016-05-20 10:40:25 · 444 阅读 · 0 评论 -
LeetCode 17. Letter Combinations of a Phone Number(键盘字母)
原题网址:https://leetcode.com/problems/letter-combinations-of-a-phone-number/Given a digit string, return all possible letter combinations that the number could represent.A mapping of digit to l原创 2016-05-19 06:14:47 · 505 阅读 · 0 评论 -
LeetCode 140. Word Break II(单词切分)
原题网址:https://leetcode.com/problems/word-break-ii/Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word.Return al原创 2016-05-27 00:22:25 · 2922 阅读 · 0 评论 -
LeetCode 87. Scramble String(字符串扰乱)
原题网址:https://leetcode.com/problems/scramble-string/Given a string s1, we may represent it as a binary tree by partitioning it to two non-empty substrings recursively.Below is one possible原创 2016-05-23 00:34:32 · 1713 阅读 · 0 评论 -
LeetCode 90. Subsets II(子集)
原题网址:https://leetcode.com/problems/subsets-ii/Given a collection of integers that might contain duplicates, nums, return all possible subsets.Note:Elements in a subset must be in non-d原创 2016-05-23 00:34:52 · 596 阅读 · 0 评论 -
LeetCode 51. N-Queens(N皇后)
原题网址:https://leetcode.com/problems/n-queens/The n-queens puzzle is the problem of placing n queens on an n×n chessboard such that no two queens attack each other.Given an integer n, retu原创 2016-05-21 06:21:29 · 559 阅读 · 0 评论 -
LeetCode 310. Minimum Height Trees(最小高度树)
原题网址:https://leetcode.com/problems/minimum-height-trees/For a undirected graph with tree characteristics, we can choose any node as the root. The result graph is then a rooted tree. Among all po原创 2016-04-21 06:51:54 · 3031 阅读 · 0 评论 -
LeetCode 269. Alien Dictionary(外星人字典)
原题网址:https://leetcode.com/problems/alien-dictionary/There is a new alien language which uses the latin alphabet. However, the order among letters are unknown to you. You receive a list of words原创 2016-04-13 02:23:36 · 5502 阅读 · 0 评论 -
LeetCode 343. Integer Break(整数分拆)
原题网址:https://leetcode.com/problems/integer-break/Given a positive integer n, break it into the sum of at least two positive integers and maximize the product of those integers. Return the maximu原创 2016-04-30 12:00:37 · 1217 阅读 · 0 评论 -
LeetCode 332. Reconstruct Itinerary(重构行程)
原题网址:https://leetcode.com/problems/reconstruct-itinerary/Given a list of airline tickets represented by pairs of departure and arrival airports [from, to], reconstruct the itinerary in order.原创 2016-04-29 08:06:51 · 1668 阅读 · 0 评论 -
LeetCode 22. Generate Parentheses(生成括号)
原题网址:https://leetcode.com/problems/generate-parentheses/Given n pairs of parentheses, write a function to generate all combinations of well-formed parentheses.For example, given n = 3, a sol原创 2016-05-19 07:18:56 · 737 阅读 · 0 评论 -
LeetCode 212. Word Search II(单词搜索)
原题网址:https://leetcode.com/problems/word-search-ii/Given a 2D board and a list of words from the dictionary, find all words in the board.Each word must be constructed from letters of sequenti原创 2016-05-05 03:14:10 · 2268 阅读 · 0 评论 -
LeetCode 291. Word Pattern II(单词模式II)
原题网址:https://leetcode.com/problems/word-pattern-ii/Given a pattern and a string str, find if str follows the same pattern.Here follow means a full match, such that there is a bijection bet原创 2016-04-16 04:00:07 · 1237 阅读 · 0 评论 -
LeetCode 336. Palindrome Pairs(回文对)
原题网址:https://leetcode.com/problems/palindrome-pairs/Given a list of unique words. Find all pairs of distinct indices (i, j) in the given list, so that the concatenation of the two words, i.e.原创 2016-04-30 05:34:08 · 2730 阅读 · 3 评论 -
LeetCode 93. Restore IP Addresses(恢复IP地址)
原题网址:https://leetcode.com/problems/restore-ip-addresses/Given a string containing only digits, restore it by returning all possible valid IP address combinations.For example:Given "2552551原创 2016-05-23 00:34:59 · 1201 阅读 · 0 评论 -
LeetCode 248. Strobogrammatic Number III
原题网址:https://leetcode.com/problems/strobogrammatic-number-iii/A strobogrammatic number is a number that looks the same when rotated 180 degrees (looked at upside down).Write a function to co原创 2016-04-07 08:04:04 · 1038 阅读 · 0 评论 -
LeetCode 216. Combination Sum III(数字之和)
原题网址:https://leetcode.com/problems/combination-sum-iii/Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combinati原创 2016-05-06 04:17:52 · 886 阅读 · 0 评论 -
LeetCode 267. Palindrome Permutation II(对称排列)
原题网址:https://leetcode.com/problems/palindrome-permutation-ii/Given a string s, return all the palindromic permutations (without duplicates) of it. Return an empty list if no palindromic permut原创 2016-04-11 01:17:09 · 876 阅读 · 0 评论 -
LeetCode 261. Graph Valid Tree(判断图是否为树)
原题网址:https://leetcode.com/problems/graph-valid-tree/Given n nodes labeled from 0 to n - 1 and a list of undirected edges (each edge is a pair of nodes), write a function to check whether these原创 2016-04-10 06:50:47 · 8221 阅读 · 0 评论 -
LeetCode 257. Binary Tree Paths
原题网址:https://leetcode.com/problems/binary-tree-paths/Given a binary tree, return all root-to-leaf paths.For example, given the following binary tree: 1 / \2 3 \ 5原创 2016-04-09 05:21:23 · 322 阅读 · 0 评论 -
LeetCode 294. Flip Game II(反转游戏II)
原题网址:https://leetcode.com/problems/flip-game-ii/You are playing the following Flip Game with your friend: Given a string that contains only these two characters: + and -, you and your friend t原创 2016-04-16 09:03:16 · 1057 阅读 · 0 评论 -
LeetCode 113. Path Sum II(路径和)
原题网址:https://leetcode.com/problems/path-sum-ii/Given a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.For example:Given the below binary tree原创 2016-05-24 00:19:11 · 827 阅读 · 0 评论 -
LeetCode 104. Maximum Depth of Binary Tree(二叉树高度)
原题网址:https://leetcode.com/problems/maximum-depth-of-binary-tree/Given a binary tree, find its maximum depth.The maximum depth is the number of nodes along the longest path from the root node原创 2016-05-24 00:12:30 · 529 阅读 · 0 评论 -
LeetCode 254. Factor Combinations(因式分解)
原题网址:https://leetcode.com/problems/factor-combinations/Numbers can be regarded as product of its factors. For example,8 = 2 x 2 x 2; = 2 x 4.Write a function that takes an integer n and原创 2016-04-09 02:18:30 · 2446 阅读 · 0 评论 -
LeetCode 329. Longest Increasing Path in a Matrix(矩阵内的最长递增路径)
原题网址:https://leetcode.com/problems/longest-increasing-path-in-a-matrix/Given an integer matrix, find the length of the longest increasing path.From each cell, you can either move to four dir原创 2016-04-28 01:57:37 · 1653 阅读 · 0 评论 -
LeetCode 286. Walls and Gates(墙与门)
原题网址:https://leetcode.com/problems/walls-and-gates/You are given a m x n 2D grid initialized with these three possible values.-1 - A wall or an obstacle.0 - A gate.INF - Infinity means an em原创 2016-04-15 01:10:25 · 1232 阅读 · 0 评论 -
LeetCode 282. Expression Add Operators(表达式)
原题网址:https://leetcode.com/problems/expression-add-operators/Given a string that contains only digits 0-9 and a target value, return all possibilities to add binary operators (not unary) +, -,原创 2016-04-14 09:11:40 · 1036 阅读 · 0 评论 -
LeetCode 351. Android Unlock Patterns(安卓解锁)
原题网址:https://leetcode.com/problems/android-unlock-patterns/Given an Android 3x3 key lock screen and two integers m and n, where 1 ≤ m ≤ n ≤ 9, count the total number of unlock patterns of the An原创 2016-05-25 01:34:55 · 5441 阅读 · 0 评论 -
LeetCode 78. Subsets(子集)
原题网址:https://leetcode.com/problems/subsets/Given a set of distinct integers, nums, return all possible subsets.Note:Elements in a subset must be in non-descending order.The solution se原创 2016-05-22 05:20:40 · 608 阅读 · 0 评论 -
LeetCode 297. Serialize and Deserialize Binary Tree(二叉树的序列化和反序列化)
原题网址:https://leetcode.com/problems/serialize-and-deserialize-binary-tree/Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in原创 2016-04-16 15:44:04 · 2124 阅读 · 0 评论 -
LeetCode 211. Add and Search Word - Data structure design(单词检索)
原题网址:https://leetcode.com/problems/add-and-search-word-data-structure-design/Design a data structure that supports the following two operations:void addWord(word)bool search(word)search(原创 2016-05-05 01:43:09 · 1277 阅读 · 0 评论