WenJieWangFlyToWorld

导航

全排列算法(java实现) 组合算法实现

100题目之53题目和70题目

在做100题目的时候,全排列的算法困扰了很久,虽然网上了搜了一些资料,可是并没有搞懂。今天花了一个下午的时间,从新梳理了一遍,终于弄明白了。

全排列的算法,递归分析网上都有:

http://www.cnblogs.com/nokiaguy/archive/2008/05/11/1191914.html

设一组数p = {r1, r2, r3, ... ,rn}, 全排列为perm(p),pn = p - {rn}。

因此perm(p) = r1perm(p1), r2perm(p2), r3perm(p3), ... , rnperm(pn)。当n = 1时perm(p} = r1。

实现Java代码如下:

 

[c-sharp] view plain copy
 
  1. public class permutate {  
  2.     public static int total = 0;  
  3.     public static void swap(String[] str, int i, int j)  
  4.     {  
  5.         String temp = new String();  
  6.         temp = str[i];  
  7.         str[i] = str[j];  
  8.         str[j] = temp;  
  9.     }  
  10.     public static void arrange (String[] str, int st, int len)  
  11.     {  
  12.         if (st == len - 1)  
  13.         {  
  14.             for (int i = 0; i < len; i ++)  
  15.             {  
  16.                 System.out.print(str[i]+ "  ");  
  17.             }  
  18.             System.out.println();  
  19.             total++;  
  20.         }  
  21.         else  
  22.         {  
  23.             for (int i = st; i < len; i ++)  
  24.             {  
  25.                 swap(str, st, i);  
  26.                 arrange(str, st + 1, len);  
  27.                 swap(str, st, i);  
  28.             }  
  29.         }  
  30.           
  31.     }  
  32.     /** 
  33.      * @param args 
  34.      */  
  35.     public static void main(String[] args) {  
  36.         // TODO Auto-generated method stub  
  37.          String str[] = {"a","b","c"};  
  38.          arrange(str, 0, str.length);  
  39.          System.out.println(total);  
  40.     }  
  41. }  

 

关键的就是arrange方法的else里面的内容,我的理解是(以求str[] = {"a","b","c"}的排列为例子):

用i从str[st]做一遍循环:

每一次循环中,都要将str[i]与str[i]互相调换位置:第一次开始,"a"与自己换,这时候,递归调用arrange[str,st + 1, len]

这是在求取str[str...len - 1]的排列即"b","c"的排列;

第二次,"a"与"b"互相调换,递归调用arrange[str,str + 1, len]就是在求取{"a","c"}的排列。

第三次,"a"与"c"互相调换,递归调用arrange[str, str + 1,len]就是在求取"{"b","a}的排列。

下面再以"b","c"的排列求取为例:

首先还是做循环,第一次,"b"与自己调换,这时候,调用arrange[str,st + 1,len], 就是求c的排列。呵呵,这时候终于到了函数递归调用的出口了

: st = len - 1。输出"b" "c";

第二次,类似的,输出"c","b";

至此,"b" "c"的排列求取完毕。加上前面的a,就输出"a""b""c" "a""c""b"。

类似的,就可以输出所有的排列了。

 

组合问题:

  1. package javabaodian;  
  2.   
  3. import java.util.Arrays;  
  4. import java.util.LinkedList;  
  5. import java.util.List;  
  6.   
  7. public class 组合 {  
  8.     // 把一个数组里的数组合全部列出 1 2 列出来 1 2 12 21  
  9.     // 考察循环递归  
  10.     public static void main(String[] args) {  
  11.         // TODO Auto-generated method stub  
  12.         String[] array = { "1", "2", "3" };  
  13.         listAll(Arrays.asList(array), "");  
  14.     }  
  15.   
  16.     private static void listAll(List<String> asList, String string) {  
  17.         System.out.println(string);  
  18.         for (int i = 0; i < asList.size(); i++) {  
  19.             List<String> temp = new LinkedList<>(asList);  
  20.             // System.out.println("//" + temp.toString());  
  21.             listAll(temp, string + temp.remove(i));  
  22.         }  
  23.     }  
  24.   
  25. }  

 

 

 

  1. // 字符串的排列  
  2. // 题目描述  
  3. // 输入一个字符串,按字典序打印出该字符串中字符的所有排列。例如输入字符串abc,则打印出由字符a,b,c所能排列出来的所有字符串abc,acb,bac,bca,cab和cba。  
  4. // 输入描述:  
  5. // 输入一个字符串,长度不超过9(可能有字符重复),字符只包括大小写字母。  
  6. static ArrayList<String> list = new ArrayList<>();  
  7.   
  8. public ArrayList<String> Permutation(String str) {  
  9.   
  10.     String match = "[a-zA-Z]+";  
  11.     if (str == null || !str.matches(match)) {  
  12.         return list;  
  13.     }  
  14.     arrange(list, str.toCharArray(), 0, str.length());  
  15.     return list;  
  16. }  
  17.   
  18. private void arrange(ArrayList<String> list2, char[] str, int index, int length) {  
  19.     // TODO Auto-generated method stub  
  20.     if (index == length - 1) {  
  21.         String stemp = "";  
  22.         for (int i = 0; i < str.length; i++) {  
  23.             stemp += str[i];  
  24.         }  
  25.         list2.add(stemp);  
  26.     } else {  
  27.         for (int i = index; i < str.length; i++) {  
  28.             if (str[i] == str[index] && i != index) {  
  29.                 continue;  
  30.             }  
  31.             swap(str, i, index);  
  32.             arrange(list2, str, index + 1, length);  
  33.             swap(str, i, index);  
  34.         }  
  35.     }  
  36. }  
  37.   
  38. private void swap(char[] str, int i, int index) {  
  39.     char c;  
  40.     c = str[i];  
  41.     str[i] = str[index];  
  42.     str[index] = c;  
  43.   
  44. }  

posted on 2017-08-08 10:12  WenjieWangFlyToWorld  阅读(551)  评论(0编辑  收藏  举报