java实现不同数字或者字母排列组合,但是不能处理特别长的字符

import java.util.HashMap;
import java.util.Iterator;
import java.util.Map;

public class PermutationCombination {
    public static HashMap<String, String> dealHashMap(HashMap<String, String> rs) {
        HashMap<String, String> resultMap = new HashMap<>();
        if (rs == null || rs.isEmpty()) {
            return resultMap;
        }

        Iterator<Map.Entry<String, String>> it = rs.entrySet().iterator();
        while (it.hasNext()) {
            Map.Entry<String, String> entry = it.next();
            String message = entry.getValue();
            for (int index = 0; index < message.length(); index++) {
                String key = entry.getKey() + message.substring(index, index + 1);
                String value = message.substring(0, index) + message.substring(index + 1, message.length());
                resultMap.put(key, value);
            }
        }
        rs.clear();
        return resultMap;

    }

    public static void main(String[] args) {
        String message = "123456789";
        HashMap<String, String> rs = new HashMap<>();
        //输出数的排列组合
        for (int index = 0; index < message.length(); index++) {
            message.substring(index, index + 1);
            String mes = message.substring(0, index) + message.substring(index + 1, message.length());
            rs.put(message.substring(index, index + 1), mes);
        }
        int i = 0;
        while (i < message.length() - 1) {
            rs = dealHashMap(rs);
            i++;
        }
        for (Map.Entry<String, String> entry : rs.entrySet()) {
            System.out.println(entry.getKey());
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值