
有序集合
文章平均质量分 78
jmspan
这个作者很懒,什么都没留下…
展开
-
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 评论 -
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 评论 -
LeetCode 363. Max Sum of Rectangle No Larger Than K(矩阵和)
原题网址:https://leetcode.com/problems/max-sum-of-sub-matrix-no-larger-than-k/Given a non-empty 2D matrix matrix and an integer k, find the max sum of a rectangle in the matrix such that its sum is原创 2016-06-23 02:55:19 · 4022 阅读 · 0 评论 -
红黑树
红黑树的两种基本操作做旋转和右旋转,LEFT_ROTATE(x)和RIGHT_ROTATE(x)分别表示以x为支点进行左旋转和右旋转。红黑树的插入操作以插入点为当前点(z),检查是否满足红黑树规则,如果不满足则调整,直至完全满足为止。根据当前点z的父节点和叔叔节点的颜色,可以分为均为红色以及叔叔节点为黑色的情况,而根据当前节点是父节点的做节点还是右节点分为两种情况。原创 2016-08-01 06:51:26 · 535 阅读 · 0 评论