子序列


一个串的子串是指该串的一个连续的局部。如果不要求连续,则可称为它的子序列。
比如对串: "abcdefg" 而言,"ab","abd","bdef" 等都是它的子序列。
特别地,一个串本身,以及空串也是它的子序列。

public class Zixulie{
	public static int f(String x, String y){
		if(x.length()==0) return 0;
		if(y.length()==0) return 0;
		
		String x1 = x.substring(1);
		String y1 = y.substring(1);	
		
		if(x.charAt(0)==y.charAt(0)) return f(x1,y1)+1;
		
		return f(x,y1)>f(x1,y)?f(x,y1):f(x1,y);//填入的部分;
	}
	
	public static void main(String[] args)
	{
		System.out.println(f("ac","abcd")); //2
		System.out.println(f("acebbcde1133","xya33bc11de")); //5
	}
}



你可能感兴趣的:(子序列)