日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 编程资源 > 编程问答 >内容正文

编程问答

[Leetcode Week13]Palindrome Partitioning

發布時間:2024/9/5 编程问答 40 豆豆
生活随笔 收集整理的這篇文章主要介紹了 [Leetcode Week13]Palindrome Partitioning 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

Palindrome Partitioning 題解

原創文章,拒絕轉載

題目來源:https://leetcode.com/problems/palindrome-partitioning/description/


Description

Given a string s, partition s such that every substring of the partition is a palindrome.

Return all possible palindrome partitioning of s.

For example, given s = "aab",
Return

[["aa","b"],["a","a","b"] ]

Solution

class Solution { public:vector<vector<string>> partition(string s) {int len = s.length();vector<vector<string>> res;vector<string> path;dfs(0, s, path, res);return res;}void dfs(int idx, string& str, vector<string>& path, vector<vector<string>>& res) {if (idx == str.length()) {res.push_back(path);return;}for (int i = idx; i < str.size(); i++) {if (isPalindrome(str, idx, i)) {path.push_back(str.substr(idx, i - idx + 1));dfs(i + 1, str, path, res);/* pop back every time in recurse stack,* than all the paces added in dfs can be remove */path.pop_back();}}}bool isPalindrome(string& str, int start, int end) {while (start < end) {if (str[start] != str[end]) {return false;}start++;end--;}return true;} };

解題描述

這道題是目的是找到一個字符串中所有由回文子串組成的集合,算法是對給出的字符串進行遍歷,查找所有回文子串,對每個回文子串再進行DFS查找新的回文子串,這樣就能找到所有由回文子串切分的子串的集合。

轉載于:https://www.cnblogs.com/yanhewu/p/7932374.html

總結

以上是生活随笔為你收集整理的[Leetcode Week13]Palindrome Partitioning的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。