LeetCode 之 DFS 深度优先遍历

1. Palindrome Partioning II

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"]
  ]
输出所有可能结果这样的问题,大部分用DFS

bool isPalindrome(string &s, int start, int end){
    while(start < end){
        if(s[start] != s[end])
            return false;
        start++, end--;
    }
    return true;
}
void DFSPalin(vector<vector<string>> &result,
              vector<string> solu,
              string &s,
              int start){
    if(start == s.size()){
        result.push_back(solu);
        return;
    }
    for(int i= start; i<s.size();i++){
        if(isPalindrome(s,start,i)){
            solu.push_back(s.substr(start,i-start+1));
            DFSPalin(result,solu,s,i+1);
            solu.pop_back();
        }
    }
}
vector<vector<string>> partition(string s) {
    vector<vector<string>> result;
    vector<string> solution;
    DFSPalin(result,solution,s,0);
    return result;
}

2. Word Break II

Given a string s and a dictionary of words dict, add spaces in s to construct a sentence where each word is a valid dictionary word.

Return all such possible sentences.

For example, given
s = "catsanddog",
dict = ["cat", "cats", "and", "sand", "dog"].

A solution is ["cats and dog", "cat sand dog"].

Analysis:


For the "Return all" problems, usually DFS or BFS will work well.
In this problem, a DFS with a simple cutting edge condition will pass all the test cases.
void dfsWordBreak(string &s,
                  int st,
                  vector<int>&sp,
                  unordered_set<string> &dict,
                  vector<string> &result,
                  vector<vector<bool>> &mp){
    if(st>=s.size()){
        string str = s;
        for(int i=0;i<sp.size()-1;i++){
            str.insert(sp[i]+i," ");
        }
        result.push_back(str);
    }else{
        for(int j=0;j<mp[st].size();j++){
            if(mp[st][j]==true){
                sp.push_back(j+1);
                dfsWordBreak(s,j+1,sp,dict,result,mp);
                sp.pop_back();
            }
        }
    }
}
vector<string> wordBreak2(string s, unordered_set<string> &dict) {
    vector<string> result;
    vector<vector<bool>> mp(s.size(),vector<bool>(s.size(),false));
    for(int i=0;i<s.size();i++){
        for(int j=i;j<s.size();j++){
            if(dict.find(s.substr(i,j-i+1))!=dict.end())
                mp[i][j] = true;
        }
    }
    bool flag = false;
    for(int i=0;i<s.size();i++){
        if(mp[i][s.size()-1])
            {flag = true;
            break;}
    }
    if(!flag) return result;
    vector<int>sp;
    dfsWordBreak(s,0,sp,dict,result,mp);
    return result;
}



  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值