2
votes
1answer
74 views
Elimination left recursion for E := EE+|EE-|id
How to eliminate left recursion for the following grammar?
E := EE+|EE-|id
Using the common procedure:
A := Aa|b
translates to:
A := b|A'
A' := ϵ| Aa
Applying this to the …
1
vote
4answers
93 views
Context Free Grammar for Unary Addition
Given an alphabet of 1s I want to parse addition of the form
1^k + 1^j = 1^k+j
This is pretty easy to represent with a pushdown automaton simply by pushing a 1 on to the stack o …
2
votes
2answers
127 views
Seeking an interactive utility for creating context free parser grammars
Hi,
I would like a utility which I can give a piece of text (in a text box) and experiment with a parser grammar (through editing a BNF of similar) and token structure while I can …
1
vote
2answers
99 views
Implementing a XML translator using XML’s EBNF
I'm contemplating the idea of implementing a XML translator using a compiler generator, based on the W3C's XML 1.1 spec, which includes a complete EBNF grammar.
More precisely, I …
0
votes
3answers
109 views
self-taught compiler courses / good introductory compiler books?
Does anyone know of online course / university lectures that comprise a typical compiler course? I've had theory of computing but unfortunately my school didn't offer a course in …
1
vote
3answers
573 views
Context Free Grammar Conversion
hi..can anyone let me know if there is any software to convert Chomsky normal form to Backus–Naur Form and vice versa?
5
votes
8answers
195 views
Why do on-line parsers seem to stop at regexps?
I've been wondering for long why there doesn't seem to be any parsers for, say, BNF, that behave like regexps in various libraries.
Sure, there's things like ANTLR, Yacc and many …
3
votes
2answers
78 views
Optional vs. mandatory terminators in context-free grammar definition
In a book chapter about compilers, there's the following grammar definition and example code.
...
statement: whileStatement
| ifStatement
| ... // Other stat …
0
votes
2answers
271 views
How can I construct a grammar that generates this language?
I'm studying for a finite automata & grammars test and I'm stuck with this question:
Construct a grammar that generates L:
L = {a^n b^m c^m+n|n>=0, m>=0}
I believe my …
0
votes
2answers
119 views
Pumping lemma for CFLs
This isn't a programming question, but I don't know of any good places on the Internets to ask computer science questions. Sorry if this is too off-topic.
I'm reviewing some old …
4
votes
4answers
303 views
What programming languages are context-free?
Or, to be a little more precise: which programming languages are defined by a context-free grammar?
From what I gather C++ is not context-free due to things like macros and templa …
1
vote
4answers
165 views
Parsing a Gmail-style advanced search syntax?
I want to parse a search string similar to that provided by Gmail using Perl. An example input would be "tag:thing by:{user1 user2} {-tag:a by:user3}". I want to put it into a tree …
2
votes
2answers
227 views
How can I eliminate left recursion in the following grammar?
Here's the grammar, which is supposed to describe a language of nested braces with commas as delimiters:
L ::= {L} | L,L |
A few more examples of strings I'd expect the grammar …
4
votes
1answer
395 views
Difference between an LL and Recursive Descent parser?
I've recently being trying to teach myself how parsers (for languages/context-free grammars) work, and most of it seems to be making sense, except for one thing. I'm focusing my at …
1
vote
1answer
114 views
How can I define an INI file grammar using the BNFC?
http://www.cs.chalmers.se/Cs/Research/Language-technology/BNFC/
how should I write my labeled BNF to get BNFC to generate a INI parser for me?
I have only gotten so far o__O!
en …
