Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
9answers
1k views

Would it be reasonable to self-study the dragon book?

I've been out of school for about 2 years and didn't take a compilers course as an undergrad. At this point, it's something I'm interested in and am wondering if it would be reasonable for me to get ...
5
votes
1answer
1k views

Dragon Book - answers?

I went out and bought a copy of the Dragon Book (second edition) but most of the exercises don't seem to have answers. Any idea where I can get them? Edit: Couldn't find solutions anywhere. Also, ...
5
votes
5answers
573 views

The Dragon Book [closed]

Is the Dragon book a good introductory textbook for a compiler class? It seems to be famous, and our professor likes it, but it's not one of the textbooks that we use.
4
votes
1answer
158 views

Dragon book colors? [closed]

What is the difference between the different colors of the dragon books on compiler design by Aho, Sethi and Ullman ?
4
votes
8answers
1k views

What's the Compiler Book People are talking about when They say the “Dragon” book?

Also is there a better book you'd recommend for learning about compilers, or is that the one to get?
3
votes
3answers
1k views

How can I convert from integers to roman numerals using a syntax-directed translation scheme?

I'm reading the dragon book (just starting for now), and I found this exercise which I can absolutely not solve. I understand the concept, but building a context-free grammar for this looks like way ...
1
vote
1answer
216 views

regexp-to-DFA algorithm

I try to write regexp-based lexical analyzer generator, based on regexp to DFA direct translation algorithm described in "Dragon Book". Now its correctly calculate nullable/firstpos/lastpos/followpos ...
0
votes
2answers
155 views

Programming a simple compiler - tips

I am trying to program a compiler for a simple language and I am facing some problems. I made a lexer/tokenizer that it takes a file and prints in stdout the tokens. The problem is that I want now ...