码迷,mamicode.com
首页 > 其他好文 > 详细

字符串全排列

时间:2016-06-16 21:36:55      阅读:155      评论:0      收藏:0      [点我收藏+]

标签:

输入“abc" 输出:abc acb bac bca cab cba

package offer;

public class zifuchuan {
static void swap(char[] c,int a,int b){
    char temp;
    temp=c[a];
    c[a]=c[b];
    c[b]=temp;
    
}

static int is_swap(char[]c ,int start,int k){
    int flag=1;
    for(int i=start;i<k;i++){
        if(c[i]==c[k]){
            flag=0;
            break;
        }
    }
    return flag;
    
}
static void digui(char a[],int begin,int end){
    int k;
    int j;
    if(begin==end){
        for(int i=0;i<a.length;i++){
            System.out.print(a[i]);
        }
    }
    else{
        for(k=begin;k<end;k++){
            if(is_swap(a,begin,k)==1){
                swap(a,k,begin);
                digui(a,begin+1,end);
                swap(a,k,begin);
                
            }
            
        }
    }
}
    public static void main(String[] args) {
// TODO Auto-generated method stub
  String str="abc";
  char []a=str.toCharArray();
  int i,len;
  digui(a,0,a.length);
  
  
  
    }

}

 

字符串全排列

标签:

原文地址:http://www.cnblogs.com/lucyliu/p/5592133.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!