
奇葩
文章平均质量分 78
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 162. Find Peak Element(查找峰值)
原题网址:https://leetcode.com/problems/find-peak-element/A peak element is an element that is greater than its neighbors.Given an input array where num[i] ≠ num[i+1], find a peak element and ret原创 2016-05-25 01:40:48 · 2302 阅读 · 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 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 138. Copy List with Random Pointer(拷贝随机指针)
原题网址:https://leetcode.com/problems/copy-list-with-random-pointer/A linked list is given such that each node contains an additional random pointer which could point to any node in the list or nul原创 2016-05-27 00:22:32 · 527 阅读 · 0 评论 -
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 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 373. Find K Pairs with Smallest Sums
原题网址:https://leetcode.com/problems/find-k-pairs-with-smallest-sums/You are given two integer arrays nums1 and nums2 sorted in ascending order and an integer k.Define a pair (u,v) which consists原创 2016-07-14 00:51:28 · 800 阅读 · 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 评论 -
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 评论