leetcode
大树叶
宠辱不惊,看庭前花开花落;去留无意,望天空云卷云舒。
展开
-
LeetCode All in One [(持续更新中...] --到808
原文地址:https://www.cnblogs.com/grandyang/p/4606334.htmlLeetCode 到808808 Soup Servings 33.60% Medium 807 Max Increase to Keep City Skyline 79.60% Medium 806 Number of Lines ...转载 2018-10-06 23:25:01 · 1781 阅读 · 0 评论 -
LintCode rain trap 接雨水
题目Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining.For example, Given [0,1,0,2,1,0,1,3,2,1,2,1...转载 2017-06-29 10:26:50 · 446 阅读 · 0 评论 -
leetcode刷题网站
LeetCode题解,151道题完整版:https://github.com/soulmachine/leetcodehttp://blog.csdn.net/derrantcm/article/details/46905087 更多 leetcode 比较全的博客地址http://blog.csdn.net/yeqiuzs/article/details/52573876...原创 2017-06-22 16:07:53 · 2754 阅读 · 0 评论 -
寻找一个字符串中的最长重复子串(后缀数组) 以及 找出一个字符串中最长不重复子串
一、寻找一个字符串中的最长重复子串(后缀数组)后缀数组其实可以看寻找一个字符串中的最长重复子串(后缀数组)作一个由字符串s倒数i个字符组成的子串的集合,其中0<i<s.length(),例如 字符串strstr的后缀数组为: {r,tr,str,rstr,trstr,strstr} 得到这个集合之后,我们可以发现,最长重复子串其实变成了求该集合中任意两个元素的最长公共前缀的问题。...转载 2019-01-17 00:18:08 · 941 阅读 · 0 评论 -
leetcode 网站
https://leetcode.com/problemset/algorithms/原创 2019-01-17 01:01:52 · 2094 阅读 · 0 评论 -
推荐 [LeetCode] Merge Intervals 合并区间
Given a collection of intervals, merge all overlapping intervals.For example,Given[1,3],[2,6],[8,10],[15,18],return[1,6],[8,10],[15,18].这道和之前那道Insert Interval很类似,这次题目要求我们合并区间,之前那题明确了输入区间集...原创 2019-05-07 15:28:26 · 174 阅读 · 0 评论 -
[LeetCode 103 ]二叉树之字形(Z字型)遍历
题目:按照z字形层次遍历二叉树(以根节点所在层为第1层,则第二层的变量从右边节点开始直到最左边节点,第三层遍历则是从最左边开始到最右边)思路:z字形层次遍历是对层次遍历加上了一个限制条件(即相邻层,从左到右的遍历顺序相反),因此还是可以采用队列来实现,只不过节点接入队列时需要考虑加入的顺序code:public class Solution { public List<Li...转载 2019-06-02 17:09:48 · 5034 阅读 · 0 评论