
LeetCode
xiaocongcxc
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
LeetCode----minimum-depth-of-binary-tree----二叉树的最小深度
题目描述 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. 翻译(使用Google翻译):给定二叉树,找到它的最小深度。最小深度是沿...原创 2018-10-21 22:42:45 · 165 阅读 · 0 评论 -
LeetCode----evaluate-reverse-polish-notation----计算逆波兰表达式的值
题目描述 Evaluate the value of an arithmetic expression in Reverse Polish Notation. Valid operators are+,-,*,/. Each operand may be an integer or another expression. Some examples: 翻译(Google):在反向波兰表示法中计算算...原创 2018-10-21 23:09:53 · 223 阅读 · 0 评论