
间隔
文章平均质量分 76
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 159. Longest Substring with At Most Two Distinct Characters(最长字串)
原题网址:https://leetcode.com/problems/longest-substring-with-at-most-two-distinct-characters/Given a string, find the length of the longest substring T that contains at most 2 distinct characters.原创 2016-05-26 00:54:39 · 594 阅读 · 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 220. Contains Duplicate III(检查重复)
原题网址:https://leetcode.com/problems/contains-duplicate-iii/Given an array of integers, find out whether there are two distinct indices i and j in the array such that the difference between nums[i]原创 2016-05-06 08:32:53 · 1571 阅读 · 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 309. Best Time to Buy and Sell Stock with Cooldown(股票交易)
原题网址:https://leetcode.com/problems/best-time-to-buy-and-sell-stock-with-cooldown/Say you have an array for which the ith element is the price of a given stock on day i.Design an algorithm to原创 2016-04-20 13:34:58 · 673 阅读 · 0 评论 -
LeetCode 256. Paint House(房子涂色)
原题网址:https://leetcode.com/problems/paint-house/There are a row of n houses, each house can be painted with one of the three colors: red, blue or green. The cost of painting each house with a cer原创 2016-04-09 05:05:47 · 1703 阅读 · 0 评论 -
LeetCode 164. Maximum Gap(最大空隙)
原题网址:https://leetcode.com/problems/maximum-gap/Given an unsorted array, find the maximum difference between the successive elements in its sorted form.Try to solve it in linear time/space.原创 2016-05-25 01:40:27 · 697 阅读 · 0 评论 -
LeetCode 358. Rearrange String k Distance Apart(字符间隔)
原题网址:https://leetcode.com/problems/rearrange-string-k-distance-apart/Given a non-empty string str and an integer k, rearrange the string such that the same characters are at least distance k fro原创 2016-06-15 03:27:55 · 5851 阅读 · 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 评论