
困难
文章平均质量分 81
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 222. Count Complete Tree Nodes(完全二叉树节点数统计)
本人原创,如有错误恳请指正,谢谢!原题网址https://leetcode.com/problems/count-complete-tree-nodes/Given a complete binary tree, count the number of nodes.原创 2016-04-04 13:01:11 · 4332 阅读 · 3 评论 -
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 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 123. Best Time to Buy and Sell Stock III(股票买卖)
原题网址:https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iii/Say you have an array for which the ith element is the price of a given stock on day i.Design an algorithm to find the原创 2016-05-24 00:37:21 · 641 阅读 · 0 评论 -
LeetCode 28. Implement strStr()(实现子串定位)
原题网址:https://leetcode.com/problems/implement-strstr/Implement strStr().Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.方法:KMP算法。p原创 2016-05-20 10:35:48 · 853 阅读 · 0 评论 -
LeetCode 354. Russian Doll Envelopes(信封包装)
原题网址:https://leetcode.com/problems/russian-doll-envelopes/You have a number of envelopes with widths and heights given as a pair of integers (w, h). One envelope can fit into another if and on原创 2016-06-16 06:39:42 · 2620 阅读 · 0 评论 -
LeetCode 315. Count of Smaller Numbers After Self (逆序数对)
原题网址:https://leetcode.com/problems/count-of-smaller-numbers-after-self/You are given an integer array nums and you have to return a new counts array. The counts array has the property where coun原创 2016-04-22 13:21:32 · 7496 阅读 · 2 评论 -
LeetCode 376. Wiggle Subsequence(摇摆子序列)
原题网址:https://leetcode.com/problems/wiggle-subsequence/A sequence of numbers is called a wiggle sequence if the differences between successive numbers strictly alternate between positive and nega原创 2016-07-22 06:18:49 · 1524 阅读 · 0 评论 -
LeetCode 276. Paint Fence(篱笆涂色)
原题网址:https://leetcode.com/problems/paint-fence/There is a fence with n posts, each post can be painted with one of the k colors.You have to paint all the posts such that no more than two adj原创 2016-04-14 00:48:41 · 1618 阅读 · 0 评论 -
LeetCode 188. Best Time to Buy and Sell Stock IV(股票买卖)
原题网址:https://leetcode.com/problems/best-time-to-buy-and-sell-stock-iv/Say you have an array for which the ith element is the price of a given stock on day i.Design an algorithm to find the m原创 2016-05-02 15:03:28 · 1990 阅读 · 0 评论 -
LeetCode 375. Guess Number Higher or Lower II
原题网址:https://leetcode.com/problems/guess-number-higher-or-lower-ii/We are playing the Guess Game. The game is as follows:I pick a number from 1 to n. You have to guess which number I picked.Ev原创 2016-07-17 03:37:35 · 2686 阅读 · 0 评论 -
LeetCode 368. Largest Divisible Subset
原题网址:https://leetcode.com/problems/largest-divisible-subset/Given a set of distinct positive integers, find the largest subset such that every pair (Si, Sj) of elements in this subset satisfie原创 2016-06-29 05:05:01 · 730 阅读 · 0 评论 -
LeetCode 363. Max Sum of Rectangle No Larger Than K(矩阵和)
原题网址:https://leetcode.com/problems/max-sum-of-sub-matrix-no-larger-than-k/Given a non-empty 2D matrix matrix and an integer k, find the max sum of a rectangle in the matrix such that its sum is原创 2016-06-23 02:55:19 · 4022 阅读 · 0 评论 -
446. Arithmetic Slices II - Subsequence
原题网址:https://leetcode.com/problems/arithmetic-slices-ii-subsequence/A sequence of numbers is called arithmetic if it consists of at least three elements and if the difference between any two con原创 2016-12-04 04:18:05 · 1323 阅读 · 0 评论 -
LeetCode 465. Optimal Account Balancing
原题网址:https://leetcode.com/problems/optimal-account-balancing/A group of friends went on holiday and sometimes lent each other money. For example, Alice paid for Bill's lunch for $10. Then later原创 2016-11-22 04:40:39 · 3644 阅读 · 1 评论 -
467. Unique Substrings in Wraparound String
原题网址:https://leetcode.com/problems/unique-substrings-in-wraparound-string/Consider the string s to be the infinite wraparound string of "abcdefghijklmnopqrstuvwxyz", so s will look like this:原创 2016-12-06 05:32:55 · 686 阅读 · 0 评论 -
464. Can I Win
原题网址:https://leetcode.com/problems/can-i-win/In the "100 game," two players take turns adding, to a running total, any integer from 1..10. The player who first causes the running total to reach原创 2016-11-26 02:24:53 · 1067 阅读 · 0 评论 -
LeetCode 330. Patching Array(数组补丁)
原题网址:https://leetcode.com/problems/patching-array/Given a sorted positive integer array nums and an integer n, add/patch elements to the array such that any number in range [1, n] inclusive ca原创 2016-04-28 06:24:51 · 591 阅读 · 0 评论 -
LeetCode 218. The Skyline Problem(天际线)
原题网址:https://leetcode.com/problems/the-skyline-problem/A city's skyline is the outer contour of the silhouette formed by all the buildings in that city when viewed from a distance. Now suppose y原创 2016-05-06 07:03:27 · 1469 阅读 · 0 评论 -
LeetCode 10. Regular Expression Matching(正则表达式匹配)
原题网址:https://leetcode.com/problems/regular-expression-matching/Implement regular expression matching with support for '.' and '*'.'.' Matches any single character.'*' Matches zero or more of原创 2016-05-19 05:10:02 · 1522 阅读 · 0 评论 -
LeetCode 255. Verify Preorder Sequence in Binary Search Tree(检查二叉搜索树的前序遍历)
原题网址:https://leetcode.com/problems/verify-preorder-sequence-in-binary-search-tree/Given an array of numbers, verify whether it is the correct preorder traversal sequence of a binary search tree.原创 2016-04-09 04:44:06 · 1001 阅读 · 0 评论 -
LeetCode 327. Count of Range Sum(区间和计数)
原题网址:https://leetcode.com/problems/count-of-range-sum/Given an integer array nums, return the number of range sums that lie in [lower, upper] inclusive.Range sum S(i, j) is defined as the su原创 2016-04-28 00:32:14 · 3758 阅读 · 0 评论 -
LeetCode 287. Find the Duplicate Number(找重复数字)
原题网址:https://leetcode.com/problems/find-the-duplicate-number/Given an array nums containing n + 1 integers where each integer is between 1 and n (inclusive), prove that at least one duplicate nu原创 2016-04-15 07:02:18 · 2994 阅读 · 1 评论 -
LeetCode 274. H-Index(文献)
原题网址:https://leetcode.com/problems/h-index/Given an array of citations (each citation is a non-negative integer) of a researcher, write a function to compute the researcher's h-index.Accordi原创 2016-04-13 10:58:01 · 714 阅读 · 0 评论 -
LeetCode 301. Remove Invalid Parentheses(删除无效的括号)
原题网址:https://leetcode.com/problems/remove-invalid-parentheses/Remove the minimum number of invalid parentheses in order to make the input string valid. Return all possible results.Note: The原创 2016-04-19 04:44:37 · 3183 阅读 · 0 评论 -
LeetCode 321. Create Maximum Number(寻找最大数)
原题网址:https://leetcode.com/problems/create-maximum-number/Given two arrays of length m and n with digits 0-9 representing two numbers. Create the maximum number of length k from digits of th原创 2016-04-25 02:00:54 · 1997 阅读 · 0 评论 -
LeetCode 210. Course Schedule II(课程安排)
原题网址:https://leetcode.com/problems/course-schedule-ii/There are a total of n courses you have to take, labeled from 0 to n - 1.Some courses may have prerequisites, for example to take cour原创 2016-05-04 17:09:45 · 820 阅读 · 0 评论 -
LeetCode 324. Wiggle Sort II(摇摆排序)
原题网址:https://leetcode.com/problems/wiggle-sort-ii/Given an unsorted array nums, reorder it such that nums[0] nums[2] .Example:(1) Given nums = [1, 5, 1, 1, 6, 4], one possible answer is原创 2016-04-26 04:48:49 · 2394 阅读 · 0 评论 -
LeetCode 229. Majority Element II(众数II)
原题网址:https://leetcode.com/problems/majority-element-ii/Given an integer array of size n, find all elements that appear more than ⌊ n/3 ⌋ times. The algorithm should run in linear time and in O(1原创 2016-04-05 06:28:28 · 1802 阅读 · 0 评论 -
LeetCode 4. Median of Two Sorted Arrays(两个有序数组的中位数)
原题网址:https://leetcode.com/problems/median-of-two-sorted-arrays/There are two sorted arrays nums1 and nums2 of size m and n respectively. Find the median of the two sorted arrays. The overall run t原创 2016-05-01 15:39:34 · 1009 阅读 · 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 评论 -
LeetCode 253. Meeting Rooms II(会议室)
原题网址:https://leetcode.com/problems/meeting-rooms-ii/Given an array of meeting time intervals consisting of start and end times [[s1,e1],[s2,e2],...] (si < ei), find the minimum number of confe原创 2016-04-08 09:05:35 · 8145 阅读 · 0 评论 -
LeetCode 214. Shortest Palindrome(最短回文)
原题网址:https://leetcode.com/problems/shortest-palindrome/Given a string S, you are allowed to convert it to a palindrome by adding characters in front of it. Find and return the shortest palindrom原创 2016-05-06 02:42:12 · 1273 阅读 · 0 评论 -
LeetCode 132. Palindrome Partitioning II(回文切分)
原题网址:https://leetcode.com/problems/palindrome-partitioning-ii/Given a string s, partition s such that every substring of the partition is a palindrome.Return the minimum cuts needed for a pa原创 2016-05-27 00:22:56 · 794 阅读 · 0 评论 -
LeetCode 94. Binary Tree Inorder Traversal(二叉树的中序遍历)
原题网址:https://leetcode.com/problems/binary-tree-inorder-traversal/Given a binary tree, return the inorder traversal of its nodes' values.For example:Given binary tree {1,#,2,3}, 1原创 2016-05-23 00:35:01 · 1027 阅读 · 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 评论 -
462. Minimum Moves to Equal Array Elements II
原题网址:https://leetcode.com/problems/minimum-moves-to-equal-array-elements-ii/Given a non-empty integer array, find the minimum number of moves required to make all array elements equal, where a m原创 2016-11-27 03:27:16 · 623 阅读 · 0 评论