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
for (int i =
this
if (j ==
System
}
if ((j
new Test()
else
continue;
}
}
public static void main(String a[]) {
// 從{
new Test()
}
}
From:http://tw.wingwit.com/Article/program/Java/hx/201311/25734.html