根据输入m数据,找出str的m个字符的所有字符串

问题描述:根据输入m数据,找出str的m个字符的所有字符串
                  例如"abc" m=2
                  "ab" "ac" "bc"
                  "abcd" m=3

                  "abc" "acd" "bcd" "abd"

在此为了简便,直接用把字符串和m 写死。

import java.util.ArrayList;

/**
 * @author yanwu
 *
 */
public class Test03
{
	public static void main(String[] args)
	{
		perenum("abc", 2);
	}
	
	public static ArrayList perenum(String str,int m)
    {  
       find("",str, m);
       return null;
    }

    public static String find(String strBef,String str,int m)
    {  
       ArrayList strArr = new ArrayList();  
       
       for(int i=0; i 

你可能感兴趣的:(机试题)