排列字符数组

发布于 2024-09-10 09:50:14 字数 74 浏览 5 评论 0原文

假设您需要发现“n”个不同字符的所有可能排列,例如“a”、“b”、“c”。您能建议我可以用来完成此任务的算法吗?一般来说,你会怎么做?

Suppose you need to discover all possible permutations of 'n' distinct characters, say 'a', 'b', 'c'. Can you suggest an algorithm I can use to get this done? Generally speaking, how would you go about it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

甜妞爱困 2024-09-17 09:50:15

有一个 Java 实现此处

There is a Java implementation here.

一枫情书 2024-09-17 09:50:14

令“Perms”为找到的排列的集合,“Used”为当前所选字符的列表。

从集合 S 中查找 n 个字符的排列:

  1. 如果 n = 0,则“Used”是一个排列。将其添加到 Perms 并返回。
  2. 对于 S 中的每个字符 C:
    1. 从 S 中删除 C 并将其附加(或推送)到 U。
    2. 从 S 中查找 n-1 个字符的排列。
    3. 删除(或弹出)U 的末尾并将 C 添加到 S。

当您从查找返回时n 个字符的排列,Perms 包含所有可能的排列。

请注意,这一切都是使用集合和列表完成的。有更轻量级的替代方案,但这些结构使步骤更加简单,所以我使用了它们。

Let 'Perms' be the collection of permutations found, and 'Used' be a list of the characters currently selected.

To find permutations of n chars from a set S:

  1. If n = 0, then Used is a permutation. Add it to Perms and return.
  2. For each char C in S:
    1. Remove C from S and append (or push) it to U.
    2. Find permutations of n-1 chars from S.
    3. Remove the end of (or pop) U and add C to S.

When you've returned from finding permutations of n chars, Perms contains all the possible permutations.

Note, this is all done using sets and lists. There are lighter-weight alternatives, but these structures make the steps more straightforward, so i used them.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文