
窗口
文章平均质量分 76
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 272. Closest Binary Search Tree Value II(二叉搜索树查找)
原题网址:https://leetcode.com/problems/closest-binary-search-tree-value-ii/Given a non-empty binary search tree and a target value, find k values in the BST that are closest to the target.Note:原创 2016-04-13 06:15:51 · 2063 阅读 · 0 评论 -
LeetCode 219. Contains Duplicate II(检查重复)
原题网址:https://leetcode.com/problems/contains-duplicate-ii/Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = num原创 2016-05-06 07:16:54 · 416 阅读 · 0 评论 -
LeetCode 221. Maximal Square(最大正方形)
原题网址:https://leetcode.com/problems/maximal-square/Given a 2D binary matrix filled with 0's and 1's, find the largest square containing all 1's and return its area.For example, given the foll原创 2016-05-06 12:25:55 · 1565 阅读 · 0 评论 -
LeetCode 346. Moving Average from Data Stream(数据流移动平均值)
原题网址:https://leetcode.com/problems/moving-average-from-data-stream/Given a stream of integers and a window size, calculate the moving average of all integers in the sliding window.For exampl原创 2016-05-01 06:23:14 · 2979 阅读 · 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 76. Minimum Window Substring(最小窗口子串)
原题网址:https://leetcode.com/problems/minimum-window-substring/Given a string S and a string T, find the minimum window in S which will contain all the characters in T in complexity O(n).For ex原创 2016-05-22 05:19:30 · 625 阅读 · 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 评论