
LeetCode
文章平均质量分 85
汇集LeetCode经典算法题,详细解读解题技巧,玉汝于成。
Jin_Kwok
QS TOP100 本硕,优快云博客专家,曾在阿里、微软等公司重要项目中担任技术负责人或核心研发成员。在人工智能领域顶会+SCI期刊发表多篇论文,授权发明专利多项
展开
-
【LeetCode】23. Merge k Sorted Lists 基于Java的解法
23. Merge k Sorted ListsTotal Accepted: 88102 Total Submissions: 372066 Difficulty: HardMerge k sorted linked lists and return it as one sorted list. Analyze and describe its complexity.原创 2016-06-04 00:46:59 · 4161 阅读 · 0 评论 -
【LeetCode】83. Remove Duplicates from Sorted List
83. Remove Duplicates from Sorted ListTotal Accepted: 111368 Total Submissions: 304182 Difficulty: EasyGiven a sorted linked list, delete all duplicates such that each element appear onl原创 2016-04-11 21:27:44 · 474 阅读 · 0 评论 -
【LeetCode】98. Validate Binary Search Tree 解法,中序遍历,搜索二叉树合法性
98. Validate Binary Search TreeTotal Accepted: 90083 Total Submissions: 430775 Difficulty: MediumGiven a binary tree, determine if it is a valid binary search tree (BST).Assume a BST原创 2016-04-14 20:41:54 · 1113 阅读 · 0 评论 -
【LeetCode】96. Unique Binary Search Trees 解法及注释
96. Unique Binary Search TreesTotal Accepted: 80679 Total Submissions: 216054 Difficulty: MediumGiven n, how many structurally unique BST's (binary search trees) that store values 1...n?原创 2016-04-14 16:34:05 · 1491 阅读 · 1 评论 -
【LeetCode】80. Remove Duplicates from Sorted Array II解法及注释
80. Remove Duplicates from Sorted Array IITotal Accepted: 71844 Total Submissions: 220521 Difficulty: MediumFollow up for "Remove Duplicates":What if duplicates are allowed at most twi原创 2016-04-11 00:12:09 · 610 阅读 · 0 评论 -
【LeetCode】77. Combinations,DFS的变形应用
77. CombinationsTotal Accepted: 72222 Total Submissions: 212130 Difficulty: MediumGiven two integers n and k, return all possible combinations of k numbers out of 1 ... n.For example,原创 2016-04-10 19:53:34 · 799 阅读 · 0 评论 -
【LeetCode】 257.Binary Tree Paths 解法的注解
257. Binary Tree PathsMy SubmissionsQuestionTotal Accepted: 40763 Total Submissions: 146109 Difficulty: EasyGiven a binary tree, return all root-to-leaf paths.For example, gi转载 2016-03-27 22:57:24 · 512 阅读 · 0 评论 -
【LeetCode】 242.Valid Anagram 解法及注释
242. Valid AnagramGiven two strings s and t, write a function to determine if t is an anagram of s.For example,s = "anagram", t = "nagaram", return true.s = "rat", t = "car", return fals原创 2016-03-28 09:53:51 · 921 阅读 · 0 评论 -
【LeetCode】.1.Two Sum
1. Two SumGiven an array of integers, return indices of the two numbers such that they add up to a specific target.You may assume that each input would have exactly one solution.Exampl原创 2016-03-28 16:41:41 · 493 阅读 · 0 评论 -
【LeetCode】3. Longest Substring Without Repeating Characters的两种解法
【题目】3. Longest Substring Without Repeating CharactersGiven a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating l转载 2016-03-28 20:57:56 · 581 阅读 · 0 评论 -
【LeetCode】99. Recover Binary Search Tree 分析、解法、注释、中序遍历、递归
99. Recover Binary Search TreeTotal Accepted: 50739 Total Submissions: 192395 Difficulty: HardTwo elements of a binary search tree (BST) are swapped by mistake.Recover the tree without原创 2016-04-15 10:27:10 · 1808 阅读 · 0 评论 -
【LeetCode】101. Symmetric Tree 中序遍历,分支遍历,二叉树
101. Symmetric TreeTotal Accepted: 103742 Total Submissions: 306773 Difficulty: EasyGiven a binary tree, check whether it is a mirror of itself (ie, symmetric around its center).For原创 2016-04-15 16:21:50 · 1396 阅读 · 2 评论 -
【LeetCode】104. Maximum Depth of Binary Tree 解法及注释,递归,深度搜索
104. Maximum Depth of Binary TreeTotal Accepted: 137961 Total Submissions: 289093 Difficulty: EasyGiven a binary tree, find its maximum depth.The maximum depth is the number of nodes原创 2016-04-15 17:46:28 · 1129 阅读 · 0 评论 -
【LeetCode】113. Path Sum II 基于Java和C++的解法及分析
113. Path Sum II Total Accepted: 80509 Total Submissions: 284188 Difficulty: MediumGiven a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the given sum.F原创 2016-05-09 22:25:36 · 2577 阅读 · 2 评论 -
【LeetCode】347. Top K Frequent Elements——基于Java的解决方案
347. Top K Frequent ElementsTotal Accepted: 12022 Total Submissions: 28556 Difficulty: MediumGiven a non-empty array of integers, return the k most frequent elements.For example,Gi原创 2016-05-31 22:43:35 · 4952 阅读 · 1 评论 -
【LeetCode】215. Kth Largest Element in an Array,基于Java和C++的解法
215. Kth Largest Element in an ArrayTotal Accepted: 57859 Total Submissions: 171725 Difficulty: MediumFind the kth largest element in an unsorted array. Note that it is the kth largest e原创 2016-05-31 11:40:47 · 1897 阅读 · 0 评论 -
【LeetCode】132. Palindrome Partitioning II 基于动态规划DP、C++、Java的分析及解法
132. Palindrome Partitioning IITotal Accepted: 50256 Total Submissions: 230441 Difficulty: HardGiven a string s, partition s such that every substring of the partition is a palindrome.原创 2016-05-16 20:29:43 · 4372 阅读 · 2 评论 -
【LeetCode】120. Triangle 基于C++和Java的分析及解法,动态规划
120. TriangleTotal Accepted: 69567 Total Submissions: 229977 Difficulty: MediumGiven a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers原创 2016-05-15 21:05:31 · 3609 阅读 · 1 评论 -
【LeetCode】112. Path Sum Java,C++,解法及注释
112. Path Sum Total Accepted: 101647 Total Submissions: 324557 Difficulty: Easy Given a binary tree and a sum, determine if the tree has a root-to-leaf path such that adding up all th原创 2016-05-04 11:35:12 · 840 阅读 · 0 评论 -
【LeetCode】111. Minimum Depth of Binary Tree解法及注释,Java,C++,DFS
111. Minimum Depth of Binary Tree Total Accepted: 104964 Total Submissions: 342426 Difficulty: Easy Given a binary tree, find its minimum depth.The minimum depth is the number of nodes原创 2016-05-04 09:50:23 · 975 阅读 · 0 评论 -
【LeetCode】109. Convert Sorted List to Binary Search Tree 解法及注释,分治,递归
109. Convert Sorted List to Binary Search Tree Total Accepted: 68081 Total Submissions: 224585 Difficulty: MediumGiven a singly linked list where elements are sorted in ascending order, con原创 2016-04-16 11:01:55 · 965 阅读 · 0 评论 -
【LeetCode】108. Convert Sorted Array to Binary Search Tree 解法及注释,分治法,递归
108. Convert Sorted Array to Binary Search TreeTotal Accepted: 73365 Total Submissions: 197776 Difficulty: MediumGiven an array where elements are sorted in ascending order, convert it to原创 2016-04-15 21:53:21 · 819 阅读 · 0 评论 -
【LeetCode】18. 4Sum
【题目】【LeetCode】18. 4SumGiven an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = target? Find all unique quadruplets in the array which gives the sum of targe原创 2016-03-30 21:31:38 · 453 阅读 · 0 评论 -
【LeetCode】39. Combination Sum & 40. Combination Sum II分析及解法&DFS
39. Combination SumGiven 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 same repeated number may原创 2016-04-01 16:07:37 · 500 阅读 · 0 评论 -
【LeetCode】41. First Missing Positive的解法及注释
41. First Missing PositiveMy SubmissionsQuestionEditorial SolutionTotal Accepted: 61575 Total Submissions: 259854 Difficulty: HardGiven an unsorted integer array, find th原创 2016-04-01 20:35:00 · 1399 阅读 · 0 评论 -
【LeetCode】84. Largest Rectangle in Histogram 解法及注释
84. Largest Rectangle in HistogramTotal Accepted: 57808 Total Submissions: 239940 Difficulty: HardGiven n non-negative integers representing the histogram's bar height where the width of原创 2016-04-12 10:14:53 · 985 阅读 · 0 评论 -
【LeetCode】61. Rotate List解法及分析
61. Rotate ListGiven a list, rotate the list to the right by k places, where k is non-negative.For example:Given 1->2->3->4->5->NULL and k = 2,return 4->5->1->2->3->NULL.【分析】 这原创 2016-04-07 23:41:55 · 859 阅读 · 0 评论 -
【LeetCode】56. Merge Intervals
56. Merge IntervalsGiven a collection of intervals, merge all overlapping intervals.For example,Given [1,3],[2,6],[8,10],[15,18],return [1,6],[8,10],[15,18].【分析】 本题旨在合并区间,给定的区间原创 2016-04-07 22:02:00 · 622 阅读 · 0 评论 -
【LeetCode】53. Maximum Subarray
53. Maximum SubarrayFind the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array [−2,1,−3,4,−1,2,1,−5,4],the contigu原创 2016-04-07 19:27:16 · 458 阅读 · 0 评论 -
【LeetCode】51. N-Queens
51. N-QueensThe 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, return all distinct solutions to the原创 2016-04-07 17:09:27 · 912 阅读 · 0 评论 -
【LeetCode】50. Pow(x, n)解法及注释
50. Pow(x, n) Total Accepted: 87046 Total Submissions: 312150 Difficulty: MediumImplement pow(x, n).【分析】此题意在实现c++库函数Pow(double x, int n),即求解x的n次幂。此题的解题思路比较简单:将n次幂“折半”,即:Pow(x,n)=Pow(x,n/2)原创 2016-04-06 23:27:10 · 1463 阅读 · 0 评论 -
【LeetCode】49. Group Anagrams解法及注释
49. Group Anagrams Total Accepted: 71543 Total Submissions: 262846 Difficulty: MediumGiven an array of strings, group anagrams together.For example, given: ["eat", "tea", "tan", "ate", "na原创 2016-04-06 21:07:13 · 1179 阅读 · 0 评论 -
【LeetCode】48. Rotate Image解法及注释
48. Rotate ImageYou are given an n x n 2D matrix representing an image.Rotate the image by 90 degrees (clockwise).Follow up:Could you do this in-place?【分析】此题要求将一个二维矩阵旋转90度,官方认证的难度是“Mediu原创 2016-04-06 10:02:36 · 1110 阅读 · 0 评论 -
【LeetCode】46. Permutations 的两种解法及注释、分析
46. 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,2], [2,1,3], [2,3,1], [3原创 2016-04-05 22:38:56 · 1143 阅读 · 0 评论 -
【LeetCode】62. Unique Paths解法及注释
62. Unique PathsA robot is located at the top-left corner of a m x n grid (marked 'Start' in the diagram below).The robot can only move either down or right at any point in time. The robot i原创 2016-04-08 11:50:50 · 781 阅读 · 0 评论 -
【LeetCode】69. Sqrt(x)解法及注释
69. Sqrt(x)Implement int sqrt(int x).Compute and return the square root of x.【分析】 对于一个正整数x,我们知道它的平方根不可能超过x/2,因此,基于此思路我们可以遍历[0 x/2]之间的所有正整数,将它们呢的平方与x比较,如果相等或者大于前者小于后者,即找到x的平方根(整数部原创 2016-04-08 23:28:01 · 1338 阅读 · 0 评论 -
【LeetCode】70. Climbing Stairs
70. Climbing StairsYou are climbing a stair case. It takes n steps to reach to the top.Each time you can either climb 1 or 2 steps. In how many distinct ways can you climb to the top?【分析原创 2016-04-09 10:08:47 · 402 阅读 · 0 评论 -
【LeetCode】31. Next Permutation解法
31. Next PermutationImplement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.If such arrangement is not possible, it must rearr原创 2016-03-31 10:44:55 · 3537 阅读 · 1 评论 -
【LeetCode】94. Binary Tree Inorder Traversal 解法及注释
94. Binary Tree Inorder TraversalTotal Accepted: 119866 Total Submissions: 303779 Difficulty: MediumGiven a binary tree, return the inorder traversal of its nodes' values.For example原创 2016-04-13 23:12:25 · 749 阅读 · 0 评论 -
【LeetCode】76. Minimum Window Substring
76. Minimum Window SubstringGiven a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).For example,S = "ADOBECODEBANC"T原创 2016-04-10 14:46:54 · 500 阅读 · 0 评论