【Java中 任意幾個數字擷取其所有的排列組合】

來源:互聯網
上載者:User

標籤:

今天在工作中碰到一個問題,在java中輸入比如1,2,3  三個數 我想要得到其所有的排列組合 比如 123,312,132,231,213,321 這些

上網找了找別人的演算法,稍加整理,分享給大家代碼如下 

  1. import java.util.Arrays;                        //用於數組輸出。
  2.     import java.util.LinkedList;
  3.     import java.util.List;
  4. public class test
  5. {
  6.    
  7.      
  8.         static String toBeArranged ="123456";                //待排列的字串。
  9.                static String[] array = stringToStringArray(toBeArranged);    //將其轉換成數組。{"1","2"...}
  10.         static int length=array.length;                    //字串長度。
  11.         static int k=0;                            //存放數組時計數。
  12.         static String[] result=new String[total(length)];        //數組大小是length的階乘。
  13.      
  14.         public static void main(String[] args)  
  15.         {
  16.             listAll(Arrays.asList(array), "");
  17.             System.out.println(Arrays.toString(result));        //輸出。
  18.         }
  19.         //主要的計算方法。
  20.         public static void listAll(List candidate, String prefix) 
    •         {
    •             if(prefix.length()==length)                //小於字串長度的組合忽略。
    •             {
    •                 result[k++]=prefix;                //存放數組裡。
    •             }
    •             for(int i=0;i
    •                    {
    •                 List tmp = new LinkedList(candidate);
    •                 {
    •                     listAll(tmp, prefix + tmp.remove(i));    //函數中的參數從右邊開始解析
    •                 }
    •             }
    •         }
    •         //將字串轉成數組。
    •         static String[] stringToStringArray(String s)
    •         {
    •             int length=s.length();
    •             if(length<=0)
    •             {
    •                 return new String[0];
    •             }
    •             String[] result=new String[length];
    •             for(int i=0;i
    •             {
    •                 result[i]=""+s.charAt(i);
    •             }
    •             return result;
    •         }
    •         //計算number階乘,為結果數組的容量。
    •         static int total(int number)       
    •         {
    •             int number1=1;
    •             for(int i=1;i<=number;i++)
    •             {
    •                 number1*=i;
    •             }
    •             return number1;
    •         }   
    •     } 

【Java中 任意幾個數字擷取其所有的排列組合】

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.