
文本解析
文章平均质量分 72
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 186. Reverse Words in a String II(反转单词)
原题网址:https://leetcode.com/problems/reverse-words-in-a-string-ii/Given an input string, reverse the string word by word. A word is defined as a sequence of non-space characters.The input stri原创 2016-05-25 01:36:04 · 1811 阅读 · 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 评论 -
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" => trueNote:原创 2016-05-22 00:04:48 · 877 阅读 · 0 评论 -
LeetCode 93. Restore IP Addresses(恢复IP地址)
原题网址:https://leetcode.com/problems/restore-ip-addresses/Given a string containing only digits, restore it by returning all possible valid IP address combinations.For example:Given "2552551原创 2016-05-23 00:34:59 · 1201 阅读 · 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 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 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 165. Compare Version Numbers(比较版本)
原题网址:https://leetcode.com/problems/compare-version-numbers/Compare two version numbers version1 and version2.If version1 > version2 return 1, if version1 version2 return -1, otherwise return 0原创 2016-05-25 01:40:07 · 469 阅读 · 0 评论 -
LeetCode 171. Excel Sheet Column Number(Excel列号)
原题网址:https://leetcode.com/problems/excel-sheet-column-number/Related to question Excel Sheet Column TitleGiven a column title as appear in an Excel sheet, return its corresponding column num原创 2016-05-25 01:36:49 · 489 阅读 · 0 评论 -
LeetCode 468. Validate IP Address
原题网址:https://leetcode.com/problems/validate-ip-address/方法:扫描检查,代码写得比较丑陋,暂时凑合着。public class Solution { private static final String NEITHER = "Neither"; private static final String IPV4 = "I原创 2016-12-15 06:07:59 · 729 阅读 · 0 评论