码迷,mamicode.com
首页 > 其他好文 > 详细

获取两个字符串中最大相同子串

时间:2014-07-14 18:33:21      阅读:316      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   java   2014   for   

2、获取两个字符串中最大相同子串。第一个动作:将短的那个串进行长度一次递减的子串打印。
"cvhellobnmtanop"
"andefc"
思路:
1,将短的那个子串按照长度递减的方式获取到。
2,将每获取到的子串去长串中判断是否包含,
如果包含,已经找到!


package tan;

class  Test
{
	public static String getMaxSubString(String s1,String s2)
	{

		String max = "",min = "";
		//得到大的那个子串
		max = (s1.length()>s2.length())?s1: s2;
		//得到小的那个子串
		min = (max==s1)?s2: s1;
		
//		sop("max="+max+"...min="+min);
		
		//外层循环遍历整个小的那个子串
		for(int x=0; x<min.length(); x++)
		{	//内层循环遍历?
			for(int y=0,z=min.length()-x; z!=min.length()+1; y++,z++)
			{
				String temp = min.substring(y,z);
				
				sop(temp);
				if(max.contains(temp))//if(s1.indexOf(temp)!=-1)
					return temp;
			}
		}
		return "";
	}


	public static void main(String[] args) 
	{
		String s1 = "ab";
		String s2 = "cvhellobnm";
		sop(getMaxSubString(s2,s1));
	}

	public static void sop(String str)
	{
		System.out.println(str);
	}
}


bubuko.com,布布扣

程序输出结果为:

andefc
andef
ndefc
ande
ndef
defc
and
nde
def
efc
an
an


获取两个字符串中最大相同子串,布布扣,bubuko.com

获取两个字符串中最大相同子串

标签:style   blog   http   java   2014   for   

原文地址:http://blog.csdn.net/u010834071/article/details/37763101

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!