Relationship to Left- and Rightmost Derivations

Slides:



Advertisements
Similar presentations
Lecture # 8 Chapter # 4: Syntax Analysis. Practice Context Free Grammars a) CFG generating alternating sequence of 0’s and 1’s b) CFG in which no consecutive.
Advertisements

1 Parse Trees Definitions Relationship to Left- and Rightmost Derivations Ambiguity in Grammars.
Context-Free Grammars
Grammars, constituency and order A grammar describes the legal strings of a language in terms of constituency and order. For example, a grammar for a fragment.
CS5371 Theory of Computation
Transparency No. P2C4-1 Formal Language and Automata Theory Part II Chapter 4 Parse Trees and Parsing.
Context-Free Grammars Lecture 7
Balanced Parentheses G = (V, , S, P) V = {S}  = {(,)} Start variable is S P = { S --> (S) | SS | /\}
1 Context-Free Languages. 2 Regular Languages 3 Context-Free Languages.
1 Context-Free Languages. 2 Regular Languages 3 Context-Free Languages.
INHERENT LIMITATIONS OF COMPUTER PROGRAMS CSci 4011.
Problem of the DAY Create a regular context-free grammar that generates L= {w  {a,b}* : the number of a’s in w is not divisible by 3} Hint: start by designing.
1 Introduction to Parsing Lecture 5. 2 Outline Regular languages revisited Parser overview Context-free grammars (CFG’s) Derivations.
Chapter 4 Context-Free Languages Copyright © 2011 The McGraw-Hill Companies, Inc. Permission required for reproduction or display. 1.
Context-free Grammars Example : S   Shortened notation : S  aSaS   | aSa | bSb S  bSb Which strings can be generated from S ? [Section 6.1]
The Pumping Lemma for Context Free Grammars. Chomsky Normal Form Chomsky Normal Form (CNF) is a simple and useful form of a CFG Every rule of a CNF grammar.
Syntax Analysis The recognition problem: given a grammar G and a string w, is w  L(G)? The parsing problem: if G is a grammar and w  L(G), how can w.
Context-free Grammars [Section 2.1] - more powerful than regular languages - originally developed by linguists - important for compilation of programming.
1 Parse Trees Definitions Relationship to lm and rm Derivations Ambiguity in Grammars.
1 Context-Free Languages Not all languages are regular. L 1 = {a n b n | n  0} is not regular. L 2 = {(), (()), ((())),...} is not regular.  some properties.
Classification of grammars Definition: A grammar G is said to be 1)Right-linear if each production in P is of the form A  xB or A  x where A and B are.
Context Free Grammars CIS 361. Introduction Finite Automata accept all regular languages and only regular languages Many simple languages are non regular:
Chapter 5 Context-Free Grammars
PART I: overview material
Context-Free Grammars – Derivations Lecture 15 Section 2.1 Mon, Sep 24, 2007.
Languages & Grammars. Grammars  A set of rules which govern the structure of a language Fritz Fritz The dog The dog ate ate left left.
Lecture # 9 Chap 4: Ambiguous Grammar. 2 Chomsky Hierarchy: Language Classification A grammar G is said to be – Regular if it is right linear where each.
Closure Properties Lemma: Let A 1 and A 2 be two CF languages, then the union A 1  A 2 is context free as well. Proof: Assume that the two grammars are.
Recursive Data Structures and Grammars Themes –Recursive Description of Data Structures –Grammars and Parsing –Recursive Definitions of Properties of Data.
1 Parse Trees Definitions Relationship to Left- and Rightmost Derivations Ambiguity in Grammars.
Grammars Hopcroft, Motawi, Ullman, Chap 5. Grammars Describes underlying rules (syntax) of programming languages Compilers (parsers) are based on such.
Grammars CS 130: Theory of Computation HMU textbook, Chap 5.
Chapter 5 Context-free Languages
Overview of Previous Lesson(s) Over View 3 Model of a Compiler Front End.
CSCI 4325 / 6339 Theory of Computation Zhixiang Chen Department of Computer Science University of Texas-Pan American.
 2004 SDU Lecture8 NON-Context-free languages.  2004 SDU 2 Are all languages context free? Ans: No. # of PDAs on  < # of languages on  Pumping lemma:
1 Context-Free Languages & Grammars (CFLs & CFGs) Reading: Chapter 5.
WELCOME TO A JOURNEY TO CS419 Dr. Hussien Sharaf Dr. Mohammad Nassef Department of Computer Science, Faculty of Computers and Information, Cairo University.
Context-Free Languages & Grammars (CFLs & CFGs) (part 2)
CONTEXT-FREE LANGUAGES
Closed book, closed notes
Context-Free Languages & Grammars (CFLs & CFGs)
Context-Free Grammars: an overview
CS510 Compiler Lecture 4.
Properties of Context-Free Languages
Fall Compiler Principles Context-free Grammars Refresher
Introduction to Parsing (adapted from CS 164 at Berkeley)
Why Study Automata? What the Course is About Administrivia
PARSE TREES.
Lecture 14 Grammars – Parse Trees– Normal Forms
Context-Free Languages
Relationship to Left- and Rightmost Derivations
Definition: Let G = (V, T, P, S) be a CFL
Lecture 7: Introduction to Parsing (Syntax Analysis)
CHAPTER 2 Context-Free Languages
فصل دوم Context-Free Languages
Finite Automata and Formal Languages
COSC 3340: Introduction to Theory of Computation
Properties of Context-Free Languages
The Pumping Lemma for CFL’s
Compilers Principles, Techniques, & Tools Taught by Jing Zhang
Derivations and Languages
COSC 3340: Introduction to Theory of Computation
Theory of Computation Lecture #
Chapter 2 Context-Free Language - 02
CFGs: Formal Definition
Fall Compiler Principles Context-free Grammars Refresher
Compilers Principles, Techniques, & Tools Taught by Jing Zhang
Conversion of CFG to PDA Conversion of PDA to CFG
COMPILER CONSTRUCTION
Presentation transcript:

Relationship to Left- and Rightmost Derivations Parse Trees Definitions Relationship to Left- and Rightmost Derivations Ambiguity in Grammars

Parse Trees Parse trees are trees labeled by symbols of a particular CFG. Leaves: labeled by a terminal or ε. Interior nodes: labeled by a variable. Children are labeled by the right side of a production for the parent. Root: must be labeled by the start symbol.

Example: Parse Tree S -> SS | (S) | () S ) (

Yield of a Parse Tree The concatenation of the labels of the leaves in left-to-right order That is, in the order of a preorder traversal. is called the yield of the parse tree. Example: yield of is (())() S ) (

Parse Trees, Left- and Rightmost Derivations For every parse tree, there is a unique leftmost, and a unique rightmost derivation. We’ll prove: If there is a parse tree with root labeled A and yield w, then A =>*lm w. If A =>*lm w, then there is a parse tree with root A and yield w.

Proof – Part 1 Induction on the height (length of the longest path from the root) of the tree. Basis: height 1. Tree looks like A -> a1…an must be a production. Thus, A =>*lm a1…an. A a1 an . . .

Part 1 – Induction Assume (1) for trees of height < h, and let this tree have height h: By IH, Xi =>*lm wi. Note: if Xi is a terminal, then Xi = wi. Thus, A =>lm X1…Xn =>*lm w1X2…Xn =>*lm w1w2X3…Xn =>*lm … =>*lm w1…wn. A X1 Xn . . . w1 wn

Proof: Part 2 Given a leftmost derivation of a terminal string, we need to prove the existence of a parse tree. The proof is an induction on the length of the derivation.

Part 2 – Basis If A =>*lm a1…an by a one-step derivation, then there must be a parse tree A a1 an . . .

Part 2 – Induction Assume (2) for derivations of fewer than k > 1 steps, and let A =>*lm w be a k-step derivation. First step is A =>lm X1…Xn. Key point: w can be divided so the first portion is derived from X1, the next is derived from X2, and so on. If Xi is a terminal, then wi = Xi.

Induction – (2) That is, Xi =>*lm wi for all i such that Xi is a variable. And the derivation takes fewer than k steps. By the IH, if Xi is a variable, then there is a parse tree with root Xi and yield wi. Thus, there is a parse tree A X1 Xn . . . w1 wn

Parse Trees and Rightmost Derivations The ideas are essentially the mirror image of the proof for leftmost derivations. Left to the imagination.

Parse Trees and Any Derivation The proof that you can obtain a parse tree from a leftmost derivation doesn’t really depend on “leftmost.” First step still has to be A => X1…Xn. And w still can be divided so the first portion is derived from X1, the next is derived from X2, and so on.

Ambiguous Grammars A CFG is ambiguous if there is a string in the language that is the yield of two or more parse trees. Example: S -> SS | (S) | () Two parse trees for ()()() on next slide.

Example – Continued S S S S ( ) ( ) S S S S ( ) ( ) ( ) ( )

Ambiguity, Left- and Rightmost Derivations If there are two different parse trees, they must produce two different leftmost derivations by the construction given in the proof. Conversely, two different leftmost derivations produce different parse trees by the other part of the proof. Likewise for rightmost derivations.

Ambiguity, etc. – (2) Thus, equivalent definitions of “ambiguous grammar’’ are: There is a string in the language that has two different leftmost derivations. There is a string in the language that has two different rightmost derivations.

Ambiguity is a Property of Grammars, not Languages For the balanced-parentheses language, here is another CFG, which is unambiguous. B -> (RB | ε R -> ) | (RR B, the start symbol, derives balanced strings. R generates strings that have one more right paren than left.

Example: Unambiguous Grammar B -> (RB | ε R -> ) | (RR Construct a unique leftmost derivation for a given balanced string of parentheses by scanning the string from left to right. If we need to expand B, then use B -> (RB if the next symbol is “(” and ε if at the end. If we need to expand R, use R -> ) if the next symbol is “)” and (RR if it is “(”.

The Parsing Process Remaining Input: (())() Steps of leftmost derivation: B Next symbol B -> (RB | ε R -> ) | (RR

The Parsing Process Remaining Input: ())() Steps of leftmost derivation: B (RB Next symbol B -> (RB | ε R -> ) | (RR

The Parsing Process Remaining Input: ))() Steps of leftmost derivation: B (RB ((RRB Next symbol B -> (RB | ε R -> ) | (RR

The Parsing Process Remaining Input: )() Steps of leftmost derivation: B (RB ((RRB (()RB Next symbol B -> (RB | ε R -> ) | (RR

The Parsing Process Remaining Input: () Steps of leftmost derivation: B (RB ((RRB (()RB (())B Next symbol B -> (RB | ε R -> ) | (RR

The Parsing Process Remaining Input: ) Steps of leftmost derivation: B (())(RB (RB ((RRB (()RB (())B Next symbol B -> (RB | ε R -> ) | (RR

The Parsing Process Remaining Input: Steps of leftmost derivation: B (())(RB (RB (())()B ((RRB (()RB (())B Next symbol B -> (RB | ε R -> ) | (RR

The Parsing Process Remaining Input: Steps of leftmost derivation: B (())(RB (RB (())()B ((RRB (())() (()RB (())B Next symbol B -> (RB | ε R -> ) | (RR

LL(1) Grammars As an aside, a grammar such B -> (RB | ε R -> ) | (RR, where you can always figure out the production to use in a leftmost derivation by scanning the given string left-to-right and looking only at the next one symbol is called LL(1). “Leftmost derivation, left-to-right scan, one symbol of lookahead.”

LL(1) Grammars – (2) Most programming languages have LL(1) grammars. LL(1) grammars are never ambiguous.

Inherent Ambiguity It would be nice if for every ambiguous grammar, there were some way to “fix” the ambiguity, as we did for the balanced-parentheses grammar. Unfortunately, certain CFL’s are inherently ambiguous, meaning that every grammar for the language is ambiguous.

Example: Inherent Ambiguity The language {0i1j2k | i = j or j = k} is inherently ambiguous. Intuitively, at least some of the strings of the form 0n1n2n must be generated by two different parse trees, one based on checking the 0’s and 1’s, the other based on checking the 1’s and 2’s.

One Possible Ambiguous Grammar S -> AB | CD A -> 0A1 | 01 B -> 2B | 2 C -> 0C | 0 D -> 1D2 | 12 A generates equal 0’s and 1’s B generates any number of 2’s C generates any number of 0’s D generates equal 1’s and 2’s And there are two derivations of every string with equal numbers of 0’s, 1’s, and 2’s. E.g.: S => AB => 01B =>012 S => CD => 0D => 012