最近作了一道阿里的筆試題算法
1. 字符串「alibaba」有 個不一樣的排列。學習
A. 5040 B. 840 C. 14 D.420spa
用機率的辦法能夠直接求解出C73*C42*A22,C73,7是下標,3是上標,結果是420;.net
後來查了一下,這是一個全排列的問題,因而學習了一下全排列的算法。code
學習的博客http://blog.csdn.net/wzy_1988/article/details/8939140blog
1 #include <stdio.h> 2 3 static int count = 0; 4 5 void swap(char* str,int a,int b) 6 { 7 char tmp = str[a]; 8 str[a] = str[b]; 9 str[b] = tmp; 10 } 11 12 13 int is_swap(char *str, int begin, int k){ //判斷從子串的第一個字符串開始,直到k-1位置,看是否有重複的字符 14 int i, flag; 15 16 for (i = begin, flag = 1; i < k; i ++) { 17 if (str[i] == str[k]) { 18 flag = 0; 19 break; 20 } 21 } 22 23 return flag; 24 } 25 26 void full_permutation(char* str,int begin,int end) 27 { 28 if (begin == end) 29 { 30 count++;//此處能夠輸出字符串或者記錄字符串 31 return; 32 }else{ 33 int i; 34 for (i = begin; i <= end; i++) 35 { 36 if (is_swap(str,begin,i)) 37 { 38 swap(str,begin,i); 39 full_permutation(str,begin+1,end); 40 swap(str,begin,i); 41 } 42 } 43 } 44 } 45 46 int main() 47 { 48 char str[7] = {'a','l','i','b','a','b','a'}; 49 full_permutation(str,0,6); 50 printf("count=%d",count); 51 return 0; 52 }
運行結果遞歸