
leetcode
文章平均质量分 86
jiaowopan
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
leetcode Wildcard Matching ,Regular Expression Matching (正则表达式匹配和通配符匹配)
一 、通配符匹配(递归和非递归): Implement wildcard pattern matching with support for '?' and '*'. '?' Matches any single character. '*' Matches any sequence of characters (including the empty sequence原创 2013-10-02 16:06:00 · 893 阅读 · 0 评论 -
leetcode 括号匹配系列
Valid Parentheses AC Rate: 712/2328 Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. The brackets must原创 2013-10-04 12:49:18 · 3308 阅读 · 0 评论 -
leetcode 全排列系列
Next Permutation AC Rate: 471/1794 Implement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers. If such arrangement is原创 2013-10-04 13:07:37 · 1220 阅读 · 0 评论 -
leetcode 回文系列 Palindrome
首先是经典的最长回文子串,Manacher给出了线性的算法。 Longest Palindromic Substring AC Rate: 859/3674 Given a string S, find the longest palindromic substring in S. You may assume that the原创 2013-10-06 16:27:46 · 696 阅读 · 0 评论