摘要: 描述Implement regular expression matching with support for '.' and '*'.'.' Matches any single character. '*' Matches zero or more of the preceding eleme 阅读全文
posted @ 2018-06-13 22:39 昵称真难想 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 描述Given a string S, find the longest palindromic substring in S. You may assume that the maximumlength of S is 1000, and there exists one unique longe 阅读全文
posted @ 2018-06-13 22:08 昵称真难想 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 描述Given two binary strings, return their sum (also a binary string).For example, a = "11" b = "1" Return ”100” 分析 无 代码 方法二 阅读全文
posted @ 2018-06-13 17:10 昵称真难想 阅读(155) 评论(0) 推荐(0) 编辑
摘要: 描述Implement atoi to convert a string to an integer.Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below 阅读全文
posted @ 2018-06-13 11:29 昵称真难想 阅读(142) 评论(0) 推荐(0) 编辑
摘要: KMP算法 字符串的快速匹配 阅读全文
posted @ 2018-06-13 00:09 昵称真难想 阅读(285) 评论(0) 推荐(0) 编辑