其他分享
首页 > 其他分享> > Markdown

Markdown

作者:互联网

这题的主要思想是动态规划

对于字符串s的每一个位置,如果能和前面任何一个,由独立的单词组成的串,拼成一个新的串,那么这个位置就应该记录下来,对于是怎么拼的,题中并没有要求,所以无关。

class Solution {
public:
   bool wordBreak(string s, vector<string>& wordDict) {
       vector<int> succ;
       unordered_map<string,int> ump;
       for (auto word:wordDict) {
           ump[word]=1;
           // printf("%d\n",ump[word]);
      }
       succ.push_back(0);
       int sl=s.length();
       for (int i=0;i<sl;i++) {
           bool flag=false;
           for (auto l:succ) {
               if (ump[s.substr(l,i-l+1)]==1) {
                   flag=true;
                   break;
              }
          }
           if (flag) succ.push_back(i+1);
      }
       for (auto i:succ) {
           if (i==s.length()) return true;
      }
       return false;

  }
};

 

标签:Markdown,word,ump,auto,flag,succ,false
来源: https://www.cnblogs.com/xyqxyq/p/12236033.html