
数组
文章平均质量分 69
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 240. Search a 2D Matrix II (矩阵内搜索)
原题网址:https://leetcode.com/problems/search-a-2d-matrix-ii/Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties:Integers in e原创 2016-04-07 00:18:58 · 526 阅读 · 0 评论 -
LeetCode 20. Valid Parentheses(括号校验)
原题网址:https://leetcode.com/problems/valid-parentheses/Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid.The brackets must原创 2016-05-19 06:50:59 · 428 阅读 · 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 53. Maximum Subarray(最大子数组)
原题网址:https://leetcode.com/problems/maximum-subarray/Find the contiguous subarray within an array (containing at least one number) which has the largest sum.For example, given the array [−2,1原创 2016-05-21 06:53:56 · 1319 阅读 · 0 评论 -
LeetCode 74. Search a 2D Matrix(搜索矩阵)
原题网址:https://leetcode.com/problems/search-a-2d-matrix/Write an efficient algorithm that searches for a value in an m x n matrix. This matrix has the following properties:Integers in each原创 2016-05-22 05:19:08 · 619 阅读 · 0 评论 -
LeetCode 80. Remove Duplicates from Sorted Array II(删除重复)
原题网址:https://leetcode.com/problems/remove-duplicates-from-sorted-array-ii/Follow up for "Remove Duplicates":What if duplicates are allowed at most twice?For example,Given sorted array nu原创 2016-05-22 05:27:10 · 338 阅读 · 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 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 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 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 · 801 阅读 · 0 评论 -
LeetCode 313. Super Ugly Number(超级丑的数字)
原题网址:https://leetcode.com/problems/super-ugly-number/Write a program to find the nth super ugly number.Super ugly numbers are positive numbers whose all prime factors are in the given prime原创 2016-04-22 01:41:57 · 1551 阅读 · 0 评论 -
LeetCode 11. Container With Most Water(容器装水)
原题网址:https://leetcode.com/problems/container-with-most-water/Given n non-negative integers a1, a2, ..., an, where each represents a point at coordinate (i, ai). n vertical lines are drawn su原创 2016-05-19 05:24:14 · 921 阅读 · 0 评论 -
LeetCode 349. Intersection of Two Arrays(数组交集)
原题网址:https://leetcode.com/problems/intersection-of-two-arrays/Given two arrays, write a function to compute their intersection.Example:Given nums1 = [1, 2, 2, 1], nums2 = [2, 2], return原创 2016-05-18 12:29:59 · 810 阅读 · 0 评论 -
LeetCode 238. Product of Array Except Self(数组元素的乘积)
原题网址:https://leetcode.com/problems/product-of-array-except-self/Given an array of n integers where n > 1, nums, return an array output such that output[i] is equal to the product of all the原创 2016-04-06 07:18:29 · 497 阅读 · 0 评论 -
LeetCode 244. Shortest Word Distance II(最短单词距离)
原题网址:https://leetcode.com/problems/shortest-word-distance-ii/This is a follow up of Shortest Word Distance. The only difference is now you are given the list of words and your method will be c原创 2016-04-07 05:28:50 · 1109 阅读 · 0 评论 -
LeetCode 283. Move Zeroes(移动数字0)
原题网址:https://leetcode.com/problems/move-zeroes/Given an array nums, write a function to move all 0's to the end of it while maintaining the relative order of the non-zero elements.For exam原创 2016-04-14 10:21:19 · 467 阅读 · 0 评论 -
LeetCode 108. Convert Sorted Array to Binary Search Tree(数组转换为二叉搜索树)
原题网址:https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree/Given an array where elements are sorted in ascending order, convert it to a height balanced BST.方法:递归,自顶向下。/** *原创 2016-05-24 00:12:53 · 505 阅读 · 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 1. Two Sum(两数之和)
原题网址:https://leetcode.com/problems/two-sum/Given 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原创 2016-05-01 06:52:09 · 1007 阅读 · 0 评论 -
LeetCode 154. Find Minimum in Rotated Sorted Array II(旋转数组查找)
原题网址:https://leetcode.com/problems/find-minimum-in-rotated-sorted-array-ii/Follow up for "Find Minimum in Rotated Sorted Array":What if duplicates are allowed?Would this affect the run-time原创 2016-05-26 00:57:56 · 482 阅读 · 0 评论 -
LeetCode 153. Find Minimum in Rotated Sorted Array(旋转数组查找)
原题网址:https://leetcode.com/problems/find-minimum-in-rotated-sorted-array/Suppose a sorted array is rotated at some pivot unknown to you beforehand.(i.e., 0 1 2 4 5 6 7 might become 4 5 6 7原创 2016-05-26 01:02:22 · 462 阅读 · 0 评论 -
LeetCode 152. Maximum Product Subarray(最大乘积)
原题网址:https://leetcode.com/problems/maximum-product-subarray/Find the contiguous subarray within an array (containing at least one number) which has the largest product.For example, given the原创 2016-05-26 01:04:48 · 1035 阅读 · 0 评论 -
LeetCode 303. Range Sum Query - Immutable(数组求和)
原题网址:https://leetcode.com/problems/range-sum-query-immutable/Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive.Example:Given nums = [-2原创 2016-04-19 07:21:12 · 631 阅读 · 0 评论 -
LeetCode 304. Range Sum Query 2D - Immutable(矩阵求和)
原题网址:https://leetcode.com/problems/range-sum-query-2d-immutable/Given a 2D matrix matrix, find the sum of the elements inside the rectangle defined by its upper left corner (row1, col1) and lowe原创 2016-04-19 07:45:22 · 757 阅读 · 0 评论 -
LeetCode 84. Largest Rectangle in Histogram(最大矩形)
原题网址:https://leetcode.com/problems/largest-rectangle-in-histogram/Given n non-negative integers representing the histogram's bar height where the width of each bar is 1, find the area of largest原创 2016-05-23 00:34:09 · 481 阅读 · 0 评论