
后缀
文章平均质量分 81
jmspan
这个作者很懒,什么都没留下…
展开
-
LeetCode 150. Evaluate Reverse Polish Notation(计算后缀表达式)
原题网址:https://leetcode.com/problems/evaluate-reverse-polish-notation/Evaluate the value of an arithmetic expression in Reverse Polish Notation.Valid operators are +, -, *, /. Each operand m原创 2016-05-26 01:10:23 · 641 阅读 · 0 评论 -
LeetCode 214. Shortest Palindrome(最短回文)
原题网址:https://leetcode.com/problems/shortest-palindrome/Given a string S, you are allowed to convert it to a palindrome by adding characters in front of it. Find and return the shortest palindrom原创 2016-05-06 02:42:12 · 1273 阅读 · 0 评论 -
LeetCode 28. Implement strStr()(实现子串定位)
原题网址:https://leetcode.com/problems/implement-strstr/Implement strStr().Returns the index of the first occurrence of needle in haystack, or -1 if needle is not part of haystack.方法:KMP算法。p原创 2016-05-20 10:35:48 · 853 阅读 · 0 评论