
上下文
文章平均质量分 76
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 173. Binary Search Tree Iterator(二叉搜索树迭代器)
原题网址:https://leetcode.com/problems/binary-search-tree-iterator/ Implement an iterator over a binary search tree (BST). Your iterator will be initialized with the root node of a BST. Calling ne原创 2016-05-25 01:36:36 · 1509 阅读 · 0 评论 -
LeetCode 297. Serialize and Deserialize Binary Tree(二叉树的序列化和反序列化)
原题网址:https://leetcode.com/problems/serialize-and-deserialize-binary-tree/ Serialization is the process of converting a data structure or object into a sequence of bits so that it can be stored in原创 2016-04-16 15:44:04 · 2124 阅读 · 0 评论 -
LeetCode 341. Flatten Nested List Iterator(嵌套列表迭代器)
原题网址:https://leetcode.com/problems/flatten-nested-list-iterator/ Given a nested list of integers, implement an iterator to flatten it. Each element is either an integer, or a list -- whose ele原创 2016-04-30 10:15:08 · 1439 阅读 · 0 评论 -
LeetCode 251. Flatten 2D Vector(摊平二维向量)
原题网址:https://leetcode.com/problems/flatten-2d-vector/ Implement an iterator to flatten a 2d vector. For example, Given 2d vector = [ [1,2], [3], [4,5,6] ] By calling next repea原创 2016-04-07 14:13:16 · 1414 阅读 · 0 评论 -
LeetCode 8. String to Integer (atoi)(字符串转数字)
原题网址:https://leetcode.com/problems/string-to-integer-atoi/ Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please原创 2016-05-19 04:32:35 · 487 阅读 · 0 评论 -
LeetCode 13. Roman to Integer(罗马数字转阿拉伯数字)
原题网址:https://leetcode.com/problems/roman-to-integer/ Given a roman numeral, convert it to an integer. Input is guaranteed to be within the range from 1 to 3999. 方法:理解罗马数字。 public class Solut原创 2016-05-19 05:33:26 · 698 阅读 · 0 评论 -
LeetCode 71. Simplify Path(简化路径)
原题网址:https://leetcode.com/problems/simplify-path/ Given an absolute path for a file (Unix-style), simplify it. For example, path = "/home/", => "/home" path = "/a/./b/../../c/", => "/c"原创 2016-05-22 00:05:09 · 754 阅读 · 0 评论 -
LeetCode 65. Valid Number(校验数字)
原题网址:https://leetcode.com/problems/valid-number/ Validate if a given string is numeric. Some examples: "0" => true " 0.1 " => true "abc" => false "1 a" => false "2e10" => true Note:原创 2016-05-22 00:04:48 · 877 阅读 · 0 评论 -
LeetCode 58. Length of Last Word(最后一个单词的长度)
原题网址:https://leetcode.com/problems/length-of-last-word/ Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.原创 2016-05-21 07:44:17 · 512 阅读 · 0 评论