打印不重复的字符串全排列(递归)

什么是不重复的字符串全排列,如果是普通字符串全排列,那么

输入:

acc

输出:

acc
acc
cac
cca
cca
cac

要求写出的去重的,也就是会输出:

acc
cac
cca

上代码进行比较吧

import java.io.BufferedInputStream;
import java.util.HashSet;
import java.util.Scanner;
import java.util.Set;

public class test {

    public static void arrange1(char[] str, int i) {
        if (i == str.length) {
            System.out.println(str);
        } else {
            for (int j = i; j < str.length; ++j) {
                swap(str, i, j);
                arrange1(str, i + 1);
                swap(str, i, j);
            }
        }
    }

    public static void arrange2(char[] str, int i) {
        if (i == str.length) {
            System.out.println(str);
        } else {
            Set<Character> set = new HashSet<Character>(); // 每一层对应一个set
            for (int j = i ; j < str.length; ++j) {
                if (!set.contains(str[j])) { // 最上面一层的串是起始串,根据起始串思考
                    set.add(str[j]);
                    swap(str, i, j);
                    arrange2(str, i + 1);
                    swap(str, i, j);
                }
            }
        }
    }

    public static void swap(char[] str, int i, int j) {
        char c = str[i];
        str[i] = str[j];
        str[j] = c;
    }

    public static void main(String[] args) {
        Scanner cin = new Scanner(new BufferedInputStream(System.in));
        String str = cin.next();
        arrange1(str.toCharArray(), 0);
        System.out.println("======================");
        arrange2(str.toCharArray(), 0);
        cin.close();
    }
}
========================================Talk is cheap, show me the code=======================================

转载于:https://www.cnblogs.com/lcy0515/p/9179778.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值