A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

  1. /*
  2. 获取两个字符串中最大相同子串。第一个动作:将短的那个串进行长度一次递减的子串打印。
  3.         "abcwerthelloyuiodef"
  4.         "cvhellobnm"

  5. 模拟一下:
  6. 第一趟:
  7. 最大子串:cvhellobnm
  8.           ↑--------↑
  9. 在长字符串中查找
  10. abcwerthelloyuiodef
  11. ↑--------↑
  12. abcwerthelloyuiodef
  13. ↑--------↑
  14. abcwerthelloyuiodef
  15.   ↑--------↑
  16. abcwerthelloyuiodef
  17.    ↑--------↑
  18. abcwerthelloyuiodef
  19.     ↑--------↑
  20. abcwerthelloyuiodef
  21.      ↑--------↑
  22. abcwerthelloyuiodef
  23.       ↑--------↑
  24. abcwerthelloyuiodef
  25.        ↑--------↑
  26. abcwerthelloyuiodef
  27.         ↑--------↑
  28. abcwerthelloyuiodef
  29.          ↑--------↑
  30. 没有找到。
  31. 第二趟:
  32. 最大子串1:cvhellobnm
  33.            ↑-------↑
  34. 最大子串2:cvhellobnm
  35.             ↑-------↑
  36. 继续在长串中匹配,如果没有找到。
  37. 第三趟:
  38. 最大子串1:cvhellobnm
  39.            ↑------↑
  40. 最大子串2:cvhellobnm
  41.             ↑------↑
  42. 最大子串3:cvhellobnm
  43.              ↑------↑
  44. 继续在长串中匹配,如果没有找到。
  45. 第四趟:
  46. 最大子串1:cvhellobnm
  47.            ↑-----↑
  48. 最大子串2:cvhellobnm
  49.             ↑-----↑
  50. 最大子串3:cvhellobnm
  51.              ↑-----↑
  52. 最大子串4:cvhellobnm
  53.               ↑-----↑
  54. ······
  55. 如果找到了则停止,返回最大相同子串;
  56. 如果最大子串为"",则放回没有最大相同子串。

  57. 根据上面模拟过程,可以得到以下思路:
  58. 第一步:在两个字符串中选取长度短的那个字符串为key,长的那个为str;转到第二步。
  59. 第二步:从左到右,在str中匹配key,如果成功,转第四步;否则,转第三步。
  60. 第三步:将key长度减一,得到多个长度相同的子串,每个子串依次执行第二步。当key为空串的时候,转到第五步。
  61. 第四步:匹配成功,结束匹配。
  62. 第五步:匹配失败。

  63. 点评:第三步没有分析清楚,所以没有写出来。
  64. key.length()-0  子串1个
  65. key.length()-1  子串1+1个
  66. key.length()-2  子串1+1+1个
  67. key.length()-3  子串1+1+1+1个
  68. 可以观察发现,

  69. 第三步用大循环嵌套小循环实现。
  70. 大循环为key的
  71. */
  72. class getMaxSubstringDemo
  73. {
  74.         public static void main(String[] args)
  75.         {
  76.                 String str1 = "abcwerthelloyuiodef";
  77.                 String str2 = "cvhellobnm";

  78.                 System.out.println( getMaxSubstring(str1,str2));
  79.         }

  80.         //匹配最大相同子串
  81.         public static String getMaxSubstring(String str1,String str2)
  82.         {
  83.                 // 比较两个字符串长度,长的为str,短的为key
  84.                 String str = (str1.length()>str2.length())?str1:str2;
  85.                 String key = (str==str1)?str2:str1;
  86.                
  87.                 for(int i = 0;i < key.length(); i++)
  88.                 {
  89.                         for(int j = 0,k = key.length()-i; k !=key.length()+1;j++,k++)//j为key的头指针,k为key的尾指针
  90.                         {
  91.                                 //设置一个临时变量,存储最大相同子串
  92.                                 String temp = key.substring(j,k);
  93.                                 if(str.indexOf(temp) != -1)
  94.                                         return temp;
  95.                         }
  96.                 }
  97.                 return "";

  98.                
  99.                 /*错误思路,未解决问题
  100.                 //key在str中的位置
  101.                 int index = str.indexOf(key);

  102.                 /2 用方法int indexOf(String str)进行判断key是否被包含在str中
  103.                 当key不为空,且在str中没找到key时,执行循环。
  104.                 当key为空,就结束循环。
  105.                 当key不为空,inex!=-1时,说明找到了最大相同子串,停止循环。
  106.                 /
  107.                 while(key.length() != 0 && index ==-1)
  108.                 {
  109.                         index = str.indexOf(key);
  110.                 }

  111.                 //key的长度减一,得到多个相同长度的key
  112.                 public static String getKeySubstring(String key)
  113.                 {
  114.                         for(int i = 0;i < key.length(); i++)
  115.                         {
  116.                                 for(int j = 0;j < key.length()-i && j != key.length();)
  117.                         }
  118.                 }
  119.                 */
  120.        
  121.         }
  122. }
复制代码
思路还不是很清晰,暂时先这样了,等想清楚了,再写一遍!

两个字符串的相同子串练习.jpg (55.37 KB, 下载次数: 149)

两个字符串的相同子串练习.jpg

9 个回复

倒序浏览
本帖最后由 sisel 于 2015-4-11 23:30 编辑

刚才的方法有2个漏洞 删除
用dp可以做到O(m*n) 级别的效率:

  1.         public static String maxSubString(String st1, String st2) {
  2.                 char[] x=st1.toCharArray(),y=st2.toCharArray();
  3.                 int maxlen =0, maxindex = 0,xlen=x.length,ylen=y.length;
  4.                 int [][] dp=new int[xlen][ylen];
  5.                 for (int i = 0; i < xlen; ++i) {
  6.                         for (int j = 0; j < ylen; ++j) {
  7.                                 if (x[i] == y[j]) {
  8.                                         if (i>0 && j>0) {
  9.                                                 dp[i][j] = dp[i - 1][j - 1] + 1;
  10.                                         }
  11.                                         if (i == 0 || j == 0) {
  12.                                                 dp[i][j] = 1;
  13.                                         }
  14.                                         if (dp[i][j] > maxlen) {
  15.                                                 maxlen = dp[i][j];
  16.                                                 maxindex = i + 1 - maxlen;
  17.                                         }
  18.                                 }
  19.                         }
  20.                 }
  21.                 return new String(x,maxindex,maxlen);
  22.         }
复制代码



点评

集合框架我还没学,另外,这没注释,看起来费劲啊!囧  发表于 2015-4-11 21:46
回复 使用道具 举报
我这个方法做了2重循环,效率还是很低 ,求高手

点评

那个的效率。。。循环了O(nlg(n))次 每次还调用String.indexOf(String) 效率也不高  发表于 2015-4-11 22:49
请参考毕向东/第13天/09-字符串练习4  发表于 2015-4-11 22:34
回复 使用道具 举报
看得头晕····
回复 使用道具 举报
{:3_46:}都来看看啊
回复 使用道具 举报
还没学到,了解一下
回复 使用道具 举报
llrs 初级黑马 2017-10-23 11:10:49
7#
public class getString {

        public static void main(String[] args) {
               
                String str2 = "abcwerthelloyuiodef";
                String str1 = "cvhellobnm";
               
                getStr(str1, str2);
                       

        }

        public static void getStr(String str1, String str2) {
               
                String temp = null;
                //确保str1是较长的字符串,str2是较短的字符串
                if(str1.length()<str2.length())
                {
                        temp = str1;
                        str1 = str2;
                        str2 = temp;
                       
                }
                for(int i=str2.length();i>=0;i--) {
                        for(int j=0;j<=str2.length()-i;j++) {
                               
                                temp = str2.substring(j, j+i-1);
                                if(str1.contains(temp)) {
                                        System.out.println(str1+"和"+str2+"的最长字串是: "+temp);
                                        i = -1;  //跳出外循环
                                        break;
                                }
                        }
                }
               
//                System.out.println(str1+"和"+str2+"没有最长字串");
        }

}
回复 使用道具 举报
您需要登录后才可以回帖 登录 | 加入黑马