在java中创建自动机

发布于 2025-01-03 05:27:24 字数 236 浏览 0 评论 0原文

如何在 Java 中创建这样的程序,它可以接受自动机正则表达式和最小字符串长度(int)并生成可能的字符串?

正则正则表达式的示例是

regex             possible strings
(a+b)*            abbababababbbab
ab(a+b)           ababababab, abaaaa, abbbbb, abbaba, . . .

How can I create such program in Java that could accept automata regular expression and a minimum string length (int) and generate possible Strings?

examples of regular regular expressions are

regex             possible strings
(a+b)*            abbababababbbab
ab(a+b)           ababababab, abaaaa, abbbbb, abbaba, . . .

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

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

发布评论

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

评论(2

爱冒险 2025-01-10 05:27:24
  1. 编译自动机(标准自动机教科书练习)
  2. 通过沿着边缘行走来模拟自动机,记录您使用的符号(如果需要,分支到并行模拟)
  3. 每次达到接受状态时输出当前字符串。
  1. Compile an automaton (standard automata text book exercise)
  2. Simulate the automaton by walking along the edges recording which symbols you use (branching into parallel simulations if needed)
  3. Output the current string each time you reach an accepting state.
我一直都在从未离去 2025-01-10 05:27:24

这篇文章中提到的这个库(我相信它生成一个随机的匹配字符串)可能有用

使用正则表达式生成字符串而不是匹配它们

This library mentioned in this post (which generates a random, matching string, I believe) maybe of use

Using Regex to generate Strings rather than match them

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