Compiler Design Part-3

 Parsers

Generation of Parse Tree Using:

  • Top down Approach  - Which production to use
  • Bottom up Approach - When to reduce
Classification of Parsers:


Popular Post

MindMaps

Featured post

Question 1: Reverse Words in a String III

  def reverseWords(s: str) -> str: words = s.split() return ' '.join(word[::-1] for word in words)