Is it always possible to convert a non-deterministic PDA to a deterministic one? What is the significance of this observation for the computing power of contex-free grammars?
Is it always possible to convert a non-deterministic PDA to a deterministic one?
0
$\begingroup$
computer-science
automata
context-free-grammar
-
0grammars are used in language design. parsing simpler languages is much easier than parsing more powerful ones. Google for "LR grammars". – 2012-01-30
1 Answers
4
The class of languages recognised by a deterministic pda is the class of deterministic context-free languages. This is a strict subclass of the class of context-free languages. An example of a context-free language that is not deterministic context-free is the language of even-length palindromes over $0$ and $1$.