码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode#131 Palindrome Partitioning

时间:2015-02-01 23:02:53      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:

原题地址

 

因为要找所有的解,只能搜索+回溯了

看来数据量比较小,关于回文串的判断没有使用动态规划也可以过

 

代码:

 1 vector<vector<string> > res;
 2 
 3 bool palindromep(string s) {
 4   int i = 0;
 5   int j = s.length() - 1;
 6   while (i < j && s[i] == s[j]) {
 7     i++;
 8     j--;
 9   }
10   return i >= j;
11 }
12 
13 void dfs(string s, vector<string> ans, int pos) {
14   if (pos == s.length())
15     res.push_back(ans);
16   for (int len = 1; pos + len <= s.length(); len++) {
17     if (palindromep(s.substr(pos, len))) {
18       ans.push_back(s.substr(pos, len));
19       dfs(s, ans, pos + len);
20       ans.pop_back();
21     }
22   }
23 }
24 
25 vector<vector<string>> partition(string s) {
26   dfs(s, vector<string>(), 0);
27   return res;
28 }

 

Leetcode#131 Palindrome Partitioning

标签:

原文地址:http://www.cnblogs.com/boring09/p/4266215.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!