获取单词或数字的所有排列
使用 LINQ 或老式方法,如何获取单词/数字的所有排列(不使用外部 API)?
例如 ab = ab, ba, abc = acb、bac 等
这是一个特定的计算机科学问题,如图像识别等吗?
Using LINQ or the old-fashioned approach, how can I get all permutations of a word/number (without using an external API)?
Eg ab = ab, ba,
abc = acb, bac, etc
Is this a specific computer science problem like image recognition, etc?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关于这个主题,有一篇精彩的 MSDN 文章,应该可以帮助您了解开始了。这是一个经过充分研究的计算机科学问题。如需其他参考,请参阅计算机编程的艺术第 4 卷分册特别是,请查看 Pre-fascicle 2B 。涵盖了生成所有排列的问题。
There is a fantastic MSDN article on this very subject that should help you get started. This is a very well-studied computer science problem. For additional reference, see fascicles of The Art of Computer Programming Volume 4. In particular, check out Pre-fascicle 2B which exactly covers the problem of generating all permutations.