
LeetCode
文章平均质量分 61
615156165
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
3. Longest Substring Without Repeating Characters
Given a string, find the length of the longest substring without repeating characters.Examples:Given "abcabcbb", the answer is "abc", which the length is 3.Given "bbbbb", the answer is "原创 2016-12-25 23:35:46 · 268 阅读 · 0 评论 -
LeetCode : 求二叉树的最短路径
Given a binary tree, find its minimum depth.The minimum depth is the number of nodes along the shortest path from the root node down to the nearest leaf node.意思就是求一个二叉树的最短路径( ̄▽ ̄)"/** * Defini原创 2017-03-21 00:15:26 · 3720 阅读 · 0 评论