
顺序
文章平均质量分 80
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 241. Different Ways to Add Parentheses(加括号的不同方法)
原题网址:https://leetcode.com/problems/different-ways-to-add-parentheses/Given a string of numbers and operators, return all possible results from computing all the different possible ways to group原创 2016-04-07 02:58:28 · 805 阅读 · 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 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 264. Ugly Number II(丑数字)
原题网址:https://leetcode.com/problems/ugly-number-ii/Write a program to find the n-th ugly number.Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For example, 1, 2原创 2016-04-10 14:12:31 · 890 阅读 · 0 评论 -
LeetCode 73. Set Matrix Zeroes(矩阵清零)
原题网址:https://leetcode.com/problems/set-matrix-zeroes/Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place.click to show follow up.Follow up:Did原创 2016-05-22 05:18:55 · 718 阅读 · 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 144. Binary Tree Preorder Traversal(二叉树前缀遍历)
原题网址:https://leetcode.com/problems/binary-tree-preorder-traversal/Given a binary tree, return the preorder traversal of its nodes' values.For example:Given binary tree {1,#,2,3}, 1原创 2016-05-26 01:57:11 · 573 阅读 · 0 评论 -
LeetCode 334. Increasing Triplet Subsequence(长度为3的递增子序列)
原题网址:https://leetcode.com/problems/increasing-triplet-subsequence/Given an unsorted array return whether an increasing subsequence of length 3 exists or not in the array.Formally the functio原创 2016-04-29 14:37:07 · 752 阅读 · 0 评论 -
LeetCode 118. Pascal's Triangle(帕斯卡三角)
原题网址:https://leetcode.com/problems/pascals-triangle/Given numRows, generate the first numRows of Pascal's triangle.For example, given numRows = 5,Return[ [1], [1,1], [1,2,1],原创 2016-05-24 00:19:50 · 714 阅读 · 0 评论 -
LeetCode 114. Flatten Binary Tree to Linked List(摊平二叉树)
原题网址:https://leetcode.com/problems/flatten-binary-tree-to-linked-list/Given a binary tree, flatten it to a linked list in-place.For example,Given 1 / \ 2 5原创 2016-05-24 00:19:26 · 525 阅读 · 0 评论 -
LeetCode 316. Remove Duplicate Letters(删除重复字母)
原题网址:https://leetcode.com/problems/remove-duplicate-letters/Given a string which contains only lowercase letters, remove duplicate letters so that every letter appear once and only once. You mus原创 2016-04-23 05:51:58 · 2254 阅读 · 1 评论