Tagged Questions

In formal language theory, a context-free grammar (CFG) is a grammar subject to a special constraint: that the left-hand side (LHS) consist of a single non-terminal symbol. CFGs are capable of representing the set of context-free languages (CFLs).

learn more… | top users | synonyms

37
votes
7answers
1k views

Is D's grammar really context-free?

I've posted this on the D newsgroup some months ago, but for some reason, the answer never really convinced me, so I thought I'd ask it here. The grammar of D is apparently context-free. The ...
33
votes
1answer
2k views

The recognizing power of “Modern” Regexes

What class of languages do real modern regexes actually recognise? Whenever there is an unbounded length capturing group with a back-reference (e.g. (.*)_\1) a regex is now matching a non-regular ...
20
votes
1answer
4k 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 attention in ...
9
votes
1answer
498 views

Predicate Logic in Haskell

I've been using the following data structure for the representation of propositional logic in Haskell: data Prop = Pred String | Not Prop | And Prop Prop | Or Prop Prop | ...
8
votes
1answer
240 views

What about theses grammars and the minimal parser to recognize it?

I'm trying to learn how to make a compiler. In order to do so, I read a lot about context-free language. But there are some things I cannot get by myself yet. Since it's my first compiler there are ...
8
votes
4answers
4k views

Regular vs Context Free Grammars

I'm studying for my Computing languages test and there's one idea I'm having problems wrapping my head around. I understand that Regular Grammars are simpler and cannot contain ambiguity but can't do ...
7
votes
1answer
266 views

Why is this valid C? — ({123;}) evaluates to 123 [closed]

Possible Duplicate: in what versions of c is a block inside parenthesis used to return a value valid? The following is a type-safe version of a typical MAX macro (this works on gcc 4.4.5): ...
7
votes
2answers
431 views

Keeping State in a Stateless world

I am converting a context-free grammar into Greibach Normal Form (GNF). The main transformation (from Hopcroft & Ullman) is a sequence of iterations over the indexed variables of the grammar. It ...
7
votes
2answers
157 views

How do LL(*) parsers work?

I cannot find any complete description about LL(*) parser, such as ANTLR, on Internet. I'm wondering what is the difference between an LL(k) parser and an LL(*) one and why they can't support ...
6
votes
1answer
95 views

Are Ruby 1.9 regular expressions equally powerful to a context free grammar?

I have this regular expression: regex = %r{\A(?<foo> a\g<foo>a | b\g<foo>b | c)\Z}x When I test it against several strings, it appears to be as powerful as a context free grammar ...
6
votes
4answers
598 views

Why is bottom-up parsing more common than top-down parsing?

It seems that recursive-descent parsers are not only the simplest to explain, but also the simplest to design and maintain. They aren't limited to LALR(1) grammars, and the code itself can be ...
6
votes
3answers
547 views

Grammar production class implementation in C#

Grammar by definition contains productions, example of very simple grammar: E -> E + E E -> n I want to implement Grammar class in c#, but I'm not sure how to store productions, for example ...
6
votes
1answer
702 views

Parsing a context-free grammar in Python

What tools are available in Python to assist in parsing a context-free grammar? Of course it is possible to roll my own, but I am looking for a generic tool that can generate a parser for a given ...
6
votes
6answers
2k views

How to define a grammar for a programming language

How to define a grammar (context-free) for a new programming language (imperative programming language) that you want to design from scratch. In other words: How do you proceed when you want to ...
6
votes
5answers
2k 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 templates. My gut tells me ...
5
votes
3answers
298 views

Is this an ambiguous grammar? How should I resolve it?

To preface this, my knowledge of this kind of stuff is puny. Anyways, I've been developing a context-free grammar to describe the structure of alegbraic expressions so I can teach myself how the CYK ...
5
votes
2answers
2k views

Converting ambiguous grammar to unambiguous

I did not understand how a unambiguous grammar is derived from a ambiguous grammar? Consider the example on site: Example. How was the grammar derived is confusing to me. Can anyone please guide me ...
5
votes
2answers
139 views

Shift-reduce: when to stop reducing?

I'm trying to learn about shift-reduce parsing. Suppose we have the following grammar, using recursive rules that enforce order of operations, inspired by the ANSI C Yacc grammar: S: A; P : ...
5
votes
8answers
251 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 others that generate ...
4
votes
2answers
85 views

chomsky hierarchy in plain english

I'm trying to find a plain (i.e. non-formal) explanation of the 4 levels of formal grammars (unrestricted, context-sensitive, context-free, regular) as set out by Chomsky. It's been an age since I ...
4
votes
3answers
164 views

How do I find the language from a regular expression?

How would I find the language for the following regular expressions over the alphabet {a, b}? aUb* (ab*Uc) ab*Ubc* a*bc*Uac EDIT: Before i get downvoted like crazy, i'd appreciate it if someone ...
4
votes
1answer
119 views

A grammar that accepts the empty set: is that even acceptable?

This was a homework assignment problem which I know I have incorrectly answered. I gave: S -> '' meaning that S yields the empty string. I know that the empty set and empty string are not the ...
4
votes
1answer
46 views

how to remove Circular Dependency in FOLLOW set

Consider a short gramma bellow S -> Bc | DB B -> ab | cS D -> d | epsilon The FIRST set is FIRST(S) ={a,c,d} FIRST(B) = { a,c } FIRST(D)= { d, epsilon } in it the Follow(S)={ ...
4
votes
2answers
101 views

Find a grammar for the following language

Find a grammar for the following language: 1) a*b | a 2) (a*b | b*a)* I think I have the answer for 1 (S -> aS | b) but I'm pretty confused on the second one. Any help would be greatly ...
4
votes
2answers
223 views

How to express a context free design grammar as an internal DSL in Python?

[Note: Rereading this before submitting, I realized this Q has become a bit of an epic. Thank you for indulging my long explanation of the reasoning behind this pursuit. I feel that, were I in a ...
4
votes
1answer
169 views

A subset of Context Free language is Context Free?

I'm stuck at solving this exercise, and I don't know where to begin: A language B is Context Free; a language C is a subset of B: is C Context Free? Prove or disprove. I've tryed using closure ...
4
votes
1answer
229 views

What are the differences between PEGs and CFGs?

From this wikipedia page: The fundamental difference between context-free grammars and parsing expression grammars is that the PEG's choice operator is ordered. If the first alternative ...
4
votes
1answer
111 views

What does =*> mean with regards to context free grammars?

I've been reading a couple books/online references about compiler theory, and keep seeing that particular operator coming up every once in a while (as seen here), specifically when the current topic ...
4
votes
4answers
511 views

Is there a standard C++ grammar?

Does the standard specify the official C++ grammar? I searched, but did not find it anywhere. Also, I wish to read a bit about C++ grammar in detail, like which category of grammars it falls in, ...
4
votes
3answers
129 views

Generating n statements from context-free grammars

So not to reinvent the wheel, I would like to know what has already been done about generating random statements from a context-free language (like those produced by yacc, etc.). These grammars are ...
4
votes
2answers
293 views

Is the language A = {0^n 1^n 0^n} context free?

I was just putting some thought into different languages (as I'm reviewing for final exams coming up) and I can not think of a valid pushdown automata to handle the language A = {0^n 1^n 0^n | n >= ...
4
votes
3answers
712 views

What is a good tool for automatically calculating FIRST and FOLLOW sets?

I'm currently in the middle of playing with a BNF grammar that I hope to be able to wrangle into a LL(1) form. However, I've just finished making changes and calculating the new FIRST and FOLLOW sets ...
4
votes
3answers
1k 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 compiler ...
3
votes
2answers
103 views

Using Parsec to parse regular expressions

I'm trying to learn Parsec by implementing a small regular expression parser. In BNF, my grammar looks something like: EXP : EXP * | LIT EXP | LIT I've tried to implement this in Haskell ...
3
votes
2answers
77 views

Free-form text with custom SRGS based Grammer

I am trying to develop a Voice based application that would accept user input as speech and perform some actions based on the input. This is my first ever venture into this technology and I am ...
3
votes
2answers
221 views

What is a Context Free Grammar?

can someone explain to me what a context free grammar is? After looking at the wikipedia entry and then the wikipedia entry on formal grammar, I am left utterly and totally befuddled. Would someone be ...
3
votes
2answers
284 views

Context free grammar for non-palindrome

I need a CFG which will generate strings other than palindromes. The solution has been provided and is as below.(Introduction to theory of computation - Sipser) R -> XRX | S S -> aTb | bTa T ...
3
votes
0answers
250 views
3
votes
3answers
692 views

Pumping Lemma with Context Free Languages

I have the language {a^i b^j c^k | i,j,k>=0 & i>j & j>k} I began by assuming some m is picked for me, such that a string z = a^m b^(m-1) c^(m-2) Then the string is split up ...
3
votes
2answers
187 views

How to write a square bracket in prolog?

This may sound strange, but it is used in a parser, I want to be able to parse something of the form foo[bar] So this would be represented in a list as: [foo, [, bar, [] Maybe such a word ...
3
votes
3answers
307 views

LALR Parser Generator Implementation Problem

I'm currently trying to implement a LALR parser generator as described in "compilers principles techniques and tools" (also called "dragon book"). A lot already works. The parser generator is ...
3
votes
3answers
224 views

Is this context-free grammar a regular expression?

I have a grammar defined as follows: A -> aA*b | empty_string Is A a regular expression? I'm confused as to how to interpret a BNF grammar.
3
votes
1answer
472 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 original grammar we ...
3
votes
2answers
399 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 statement possibilities ...
3
votes
2answers
352 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 plan to use Qi-YACC ...
3
votes
3answers
2k views

Context-free grammar describing regular expressions?

I'm trying to write a regular expression engine. I'd like to write a recursive descent parser by hand. What would a context-free grammar without left recursion for the language of regular expressions ...
3
votes
3answers
491 views

Seeking an interactive utility for creating context free parser grammars

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 see how the parse tree ...
3
votes
3answers
548 views

Is “regex” in modern programming languages really “context sensitive grammar”?

Over the years, "regex" pattern matching has been getting more and more powerful to the point where I wonder: is it really just context-sensitive-grammar matching? Is it a variation/extension of ...
2
votes
1answer
60 views

Finding a code snipplets in a binary file

I have binary file of ASCII garbage that contains, let's say, some snipplets of XML code somewhere in it. I looking for a (preferably fast) algorithm that can find these XML snipplets in this binary ...
2
votes
0answers
36 views

Context free grammar for this context free language

A context free grammar for the following language? L={a^m b^n a^k|Maximum(m,n) => k} Σ={a,b}

1 2 3 4