具有一些条件的字符串排列

发布于 2024-10-09 10:55:30 字数 373 浏览 8 评论 0原文

我需要一个用于字符串排列的 Java 算法,有几个条件:

  1. 每个字母每个单词一次
  2. 单词必须以某个字符串结尾
  3. 仅应显示具有一定长度的单词。
  4. 每个字母都可以是小写和大写。

例如:

String perm = "abcdefgh";

字长应为 7 或 8,并且应始终以 "g" 或 "gh" 结尾。

好的:

abcdefgh
ABCdefgh 
ABCDEFGH
acbdefgh 
abdcefg
abcdefg

不好的:

abc
abcdeghf

I need a Java algorithm for a String permutation with a few conditions:

  1. Every letter just once per word
  2. The word has to end with a certain String
  3. Only words that have a certain length should be shown.
  4. Every letter can be in lower and upper case.

For example:

String perm = "abcdefgh";

Word length should be 7 or 8 and it should always end with "g" or "gh".

Okay:

abcdefgh
ABCdefgh 
ABCDEFGH
acbdefgh 
abdcefg
abcdefg

Not okay:

abc
abcdeghf

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

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

发布评论

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

评论(2

偏爱你一生 2024-10-16 10:55:30

我认为应该有一个叫“大厅班长”的徽章,用来告诉学生自己做作业。 :)

I think there should be a badge called "hall monitor" for telling students to do their own homework. :)

最冷一天 2024-10-16 10:55:30

我的做法如下:

  1. 从烫发字符串创建可用字符的数组。
  2. 创建后缀字符串。例如“g”或“gh”。
  3. 从字符数组中删除后缀的每个字母。
  4. 目标字符串 = ""
  5. 对于 i=0 到 MAX_LENGTH:
    {
  6. 将数组中的随机字母添加到目标字符串
  7. 从数组中删除该字母
  8. }

  9. 将后缀添加到目标字符串。

多次运行以获得更多排列。

Here's how I'd do it:

  1. Create an array of available characters from the perm string.
  2. Create the suffix string. E.g. 'g' or 'gh'.
  3. Remove from the character array each of the letters of the suffix.
  4. Destination string = ""
  5. For i=0 to MAX_LENGTH:
    {

  6. Add a random letter from the array to the destination string
  7. Remove that letter from the array
  8. }

  9. Add the suffix to the destination string.

Run this multiple times to get more permutations.

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