使上下文无关语法更简单(更漂亮)

发布于 2024-12-17 10:11:25 字数 357 浏览 0 评论 0原文

我正在使用 CFG,每次我为特定语言编写规则时,我的 CFG 都会变得令人厌恶。它最终变成一行:

S->tooooooo much stuff

我知道将事物放入乔姆斯基范式会将其置于正确的格式,并且事物会更漂亮,但我想知道是否有任何想法可以记住,以使这些看起来不那么混乱。

即,lang:

a^n b^m, where n >= m

我的CFG(粗略):

S -> Sa|Sab|Sba|aS|aSb|abS|bSa|baS|ε

有人可以帮助我改掉我的坏习惯吗?

I'm working with CFG and every time I write up rules to a particular language, my CFG ends up disgusting. It ends up as one line:

S->tooooooo much stuff

I know that putting things into chomsky normal form will put it in the correct format and things will be prettier but I was wondering if there are any ideas to keep in mind for making these look less cluttered.

i.e., lang:

a^n b^m, where n >= m

My CFG (gross):

S -> Sa|Sab|Sba|aS|aSb|abS|bSa|baS|ε

Can anyone help me with my bad habits?

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

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

发布评论

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

评论(1

风流物 2024-12-24 10:11:25

你真的需要用CFG来描述这种简单的语言吗?只计算 a 和 b 会容易得多。

但假设这只是一个例子......

真实解析器中的 CFG 通常将其分成每行一个产生式,并以某种合理的方式将它们分组。

S -> a b S
   | b a S
   | a S
   | a S b
   | b S a
   | ε

Do you really need to use CFG to describe this simple language? It would be much easier to just count the a's and b's.

But assuming this is just an example...

CFG's in real parsers usually split it up to one production per line, and group them in some reasonable way.

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