赞
踩
131. 分割回文串 - 力扣(LeetCode) (leetcode-cn.com)
class Solution { public: // 返回值 vector<vector<string>> ans; vector<string> path; // DFS void DFS(string& s, int index) { // 边界 if (index >= s.size()) { ans.emplace_back(path); return; } for (int i = index; i < s.size(); ++i) { // 数组是找到一个数,就进入下一层 // 而字符串是必须找到一个回文串,才能继续下一层分割,所以才有continue语句 if (isPalindrome(s, index, i)) { string str = s.substr(index, i - index + 1); path.emplace_back(str); } else { continue; } DFS(s, i + 1); path.pop_back(); } } // 判断回文串 bool isPalindrome(string& s, int start, int end) { for (int i = start, j = end; i < j; ++i, --j) { if (s[i] != s[j]) return false; } return true; } vector<vector<string>> partition(string s) { DFS(s, 0); return ans; } };
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。