当前位置:   article > 正文

算法刷题 DAY60

算法刷题 DAY60

647.回文子串

  1. int countSubstrings(char* s) {
  2. int res=0;
  3. int len=strlen(s);
  4. bool dp[len][len];
  5. for(int i=0;i<len;i++){
  6. for(int j=0;j<len;j++){
  7. dp[i][j]=false;
  8. }
  9. }
  10. for(int i=len-1;i>=0;i--){
  11. for(int j=i;j<len;j++){
  12. if(s[i]==s[j]){
  13. if(j-i<=1){
  14. dp[i][j]=true;
  15. res++;
  16. }
  17. else {
  18. if(dp[i+1][j-1]==true){
  19. dp[i][j]=true;
  20. res++;
  21. }
  22. }
  23. }
  24. }
  25. }
  26. return res;
  27. }

516.最长回文子序列

  1. int longestPalindromeSubseq(char* s) {
  2. int len=strlen(s);
  3. int dp[len][len];
  4. for(int i=0;i<len;i++){
  5. for(int j=0;j<len;j++){
  6. dp[i][j]=0;
  7. }
  8. }
  9. for(int i=0;i<len;i++) dp[i][i]=1;
  10. for(int i=len-1;i>=0;i--){
  11. for(int j=i+1;j<len;j++){
  12. if(s[i]==s[j]) dp[i][j]=dp[i+1][j-1]+2;
  13. else{
  14. dp[i][j]=fmax(dp[i][j-1],dp[i+1][j]);
  15. }
  16. }
  17. }
  18. return dp[0][len-1];
  19. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/151918
推荐阅读
相关标签
  

闽ICP备14008679号