package Test;
public class Test {
// 存储字符
private String s = ;
// 要取的字符目录
public static String c[] = {
};
// 父对象
public String father = null;
public Test() {
}
/****
* 利用递归进行排列组合算法 打印出所有可能的组合
*
* @param j
* @param t
*/
public void show(int j Test t) {
for (int i = ; i < clength; i++) {
thiss = ts + c[i];
if (j == ) {
Systemoutprintln(thiss);
}
if ((j ) != )
new Test()show(j this);
else
continue;
}
}
public static void main(String a[]) {
// 从{ }取出个数进行组合打印出所有的可能
new Test()show( new Test());
}
}