程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> java-JAVA 生成 用0到9這十個數字 所有的排列組合(0不能再第一個)

java-JAVA 生成 用0到9這十個數字 所有的排列組合(0不能再第一個)

編輯:編程解疑
JAVA 生成 用0到9這十個數字 所有的排列組合(0不能再第一個)

用 0到9 生成 十位數的所有排列組合,數字0不能在第一個,這個生成的十位數,
不能有重復的數字。

最佳回答:


 public static void main(String[] args) {
        String str[] = { "0", "1", "2", "3", "4", "5", "6", "7", "8", "9" };
        permutation(str, 0, str.length);
    }

    static void swap(String[] str, int start, int end) {
        String tmep = str[start];
        str[start] = str[end];
        str[end] = tmep;
    }

    static void permutation(String[] str, int start, int end) {

        if (start == end - 1) {
            for (int i = 0; i < end; i++) {
                System.out.print(str[i]);
            }
            System.out.println();
        } else {

            for (int i = start; i < end; i++) {
                if (i == 0 && str[0].equals("0"))
                    continue;
                swap(str, start, i);
                permutation(str, start + 1, end);

                swap(str, start, i);
            }
        }
    }
}
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved