剑指Offer 38

首先将字符串变为字符数组并排序

使用递归,在每次递归中,遍历字符数组中没有做标记的元素,加到字符串中,并将字符数组的元素做标记,递归,并在递归结束时,撤销标记,并删除字符串最后一个元素;

注:考虑字符数组中有相同元素

当字符数组所有元素均做了标记以后就将字符串加入字符串数组

class Solution {
    List<String> str_s;
    char[] new_s;
    StringBuilder res;

    public String[] permutation(String s) {
        if(s.length() == 0) return new String[0];

        str_s = new ArrayList<>();
        new_s = s.toCharArray();
        res = new StringBuilder("");
        Arrays.sort(new_s);

        List<Integer> lists = new ArrayList<>();
        for(int i = 0; i < new_s.length; i++)
            lists.add(i);

        dfs(lists);

        String[] ss = new String[str_s.size()];
        for(int i =0; i < str_s.size(); i++){
            ss[i] = str_s.get(i);
        }
        return ss;
    }

    private void dfs(List<Integer> lists){
        if(lists.size() == 0){
            str_s.add(res.toString());
        }

        for(int i = 0; i < lists.size(); i++){
            if(i == 0 || new_s[lists.get(i)] != new_s[lists.get(i - 1)]){
                int item = lists.get(i);
                res.append(new_s[lists.get(i)]);
                lists.remove(i);
                dfs(lists);
                lists.add(i, item);
                res.deleteCharAt(res.length() - 1);
            }
        }
    }
}

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值