(i found the answer, its below in comments for anyone else)

i am looking for a discussion on which is better used and in what circumstanes in a compiler an nfa or dfa. what are the time complexity trade offs of simulating an nfa vs dfa and which one is more suitable during what circumstances in a compiler??

Thank you, im revising for a college exam and help would be greatly apriciated :)

Leanne. somebody answer me :( :)

link|improve this question
i found the answer for anyone else looking.. – user560618 Jan 10 '11 at 19:44
Time-Space Tradeoffs Goal: Given reg. exp.r and input stringx, determine whetherx is in L(r) Method #1: Build NFAN fromr using Thompson's construction, then run previous algorithm ¡ Can construct NFA inO(|r|) time. ¡ N has at most twice as many states as |r|, and at most two transitions from each state, so transition table isO(|r|) space. ¡ Previous algorithm accepts or rejectsx inO(|r|×|x|) time – user560618 Jan 10 '11 at 19:44
Method #2: Build NFAN fromr using Thompson's construction, then DFAD fromN using subset construction; then use DFA algorithm from last time for accepting/rejectingx ¡ D can have up to 2k states, where k = # states in N. ''Worst- case'' string (a |b)*a (a |b)(a |b)...(a |b) : why? ¡ DFA acceptance algorithm accepts or rejectsx inO(|x|) – user560618 Jan 10 '11 at 19:45
Summary: Automaton Build Run NFA O(|r|) O(|r|×|x|) DFA O(2|r|) O(|x|) So use first method (NFA) for quick search over short text strings (e.g., emacs r.e. search) Use second method (DFA) for longer searches over long text strings (e.g., Unix grep on multiple files) ''Lazy'' DFA method builds DFA transition table on the fly, caching transitions as state/input pairs are encountered – user560618 Jan 10 '11 at 19:45
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.