递归 - 字符串的所有排列
可能的重复:
是否有更好的方法来进行字符串排列?< /a>
我知道递归,并且可以编写诸如斐波那契数、树遍历之类的程序,所以我想我知道,但是当具体到这个问题时,我感觉很糟糕,
请指导我如何计算字符串的所有可能的排列
Possible Duplicate:
Are there any better methods to do permutation of string?
I know recursion and can write programs like fibonacci number
, tree traversals
so I think I know it but when it comes to this question specifically I feel bad
Please guide me with how to calculate all possible permutations of a string
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下是不同排列算法的好例子,包括递归算法:http://www.bearcave.com/ random_hacks/permute.html
Here is good examples of different permutation algorithms, including recursive one: http://www.bearcave.com/random_hacks/permute.html