gpt4 book ai didi

java - 生成给定字符串的所有排列

转载 作者:行者123 更新时间:2023-12-02 01:12:57 24 4
gpt4 key购买 nike

查找字符串所有排列的优雅方法是什么?例如。 ba 的排列将是 baab,但是更长的字符串(例如 abcdefgh)呢?有没有Java实现的例子?

最佳答案

public static void permutation(String str) { 
permutation("", str);
}

private static void permutation(String prefix, String str) {
int n = str.length();
if (n == 0) System.out.println(prefix);
else {
for (int i = 0; i < n; i++)
permutation(prefix + str.charAt(i), str.substring(0, i) + str.substring(i+1, n));
}
}

(来自 Introduction to Programming in Java )

关于java - 生成给定字符串的所有排列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57675459/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com