一个很好的字符串全排列算法

 
  1. package com.visionsky; 
  2.  
  3. public class test { 
  4.  
  5.     private char[] numbers = new char[] { 'a''b''c','d','e'}; 
  6.     public int n; 
  7.     private String lastResult = ""
  8.  
  9.     private boolean validate(String s) { 
  10.         if (s.compareTo(lastResult) <= 0
  11.             return false
  12.         if (s.charAt(2) == 'b'
  13.             return false
  14.         if (s.indexOf("ce") >= 0 || s.indexOf("ec") >= 0
  15.             return false
  16.         return true
  17.     } 
  18.  
  19.     /* 
  20.      * index 用于判断当前result中存有字符串的序号 
  21.      * result 当前运行时字符串的结果 
  22.      */ 
  23.     public void list(String index, String result) { 
  24.         for (int i = 0; i < numbers.length; i++) { 
  25.             if (index.indexOf(i + 48) < 0) {//i+48 表示当前i的ascii码,即对i做char型类型转换,判断当前字符是否存在于result中 
  26.                 String s = result + String.valueOf(numbers[i]); 
  27.                 if (s.length() == numbers.length) { 
  28.                     if (validate(s)) { 
  29.                         System.out.println(s); 
  30.                         lastResult = s; 
  31.                         n++; 
  32.                     } 
  33.                      break
  34.                 } 
  35.                 list(index + String.valueOf(i), s); 
  36.             } 
  37.         } 
  38.     } 
  39.  
  40.     public static void main(String[] args) { 
  41.         test t = new test(); 
  42.         t.list(""""); 
  43.         System.out.println("总数:" + t.n); 
  44.  
  45.     } 

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

字符串的排列

【转】http://zhedahht.blog.163.com/blog/static/254111742007499363479/

 

题目:输入一个字符串,打印出该字符串中字符的所有排列。例如输入字符串abc,则输出由字符abc所能排列出来的所有字符串abcacbbacbcacabcba

分析:这是一道很好的考查对递归理解的编程题,因此在过去一年中频繁出现在各大公司的面试、笔试题中。

我们以三个字符abc为例来分析一下求字符串排列的过程。首先我们固定第一个字符a,求后面两个字符bc的排列。当两个字符bc的排列求好之后,我们把第一个字符a和后面的b交换,得到bac,接着我们固定第一个字符b,求后面两个字符ac的排列。现在是把c放到第一位置的时候了。记住前面我们已经把原先的第一个字符a和后面的b做了交换,为了保证这次c仍然是和原先处在第一位置的a交换,我们在拿c和第一个字符交换之前,先要把ba交换回来。在交换ba之后,再拿c和处在第一位置的a进行交换,得到cba。我们再次固定第一个字符c,求后面两个字符ba的排列。

既然我们已经知道怎么求三个字符的排列,那么固定第一个字符之后求后面两个字符的排列,就是典型的递归思路了。

基于前面的分析,我们可以得到如下的参考代码:

void Permutation(char* pStr, char* pBegin);

/
// Get the permutation of a string,
// for example, input string abc, its permutation is
// abc acb bac bca cba cab
/
void Permutation(char* pStr)
{
      Permutation(pStr, pStr);
}

/
// Print the permutation of a string,
// Input: pStr   - input string
//        pBegin - points to the begin char of string
//                 which we want to permutate in this recursion
/
void Permutation(char* pStr, char* pBegin)
{
      if(!pStr || !pBegin)
            return;

      // if pBegin points to the end of string,
      // this round of permutation is finished, 
      // print the permuted string
      if(*pBegin == '\0')
      {
            printf("%s\n", pStr);
      }
      // otherwise, permute string
      else
      {
            for(char* pCh = pBegin; *pCh != '\0'; ++ pCh)
            {
                  // swap pCh and pBegin
                  char temp = *pCh;
                  *pCh = *pBegin;
                  *pBegin = temp;

                  Permutation(pStr, pBegin + 1);

                  // restore pCh and pBegin
                  temp = *pCh;
                  *pCh = *pBegin;
                  *pBegin = temp;
            }
      }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值