NFA to DFA conversion: Difference between revisions

From Algorithm Wiki
Jump to navigation Jump to search
No edit summary
No edit summary
 
(5 intermediate revisions by the same user not shown)
Line 6: Line 6:
== Parameters ==  
== Parameters ==  


<pre>n: number of states in the given NFA</pre>
$n$: number of states in the given NFA


== Table of Algorithms ==  
== Table of Algorithms ==  
Line 20: Line 20:
|}
|}


== Time Complexity graph ==  
== Time Complexity Graph ==  


[[File:NFA to DFA conversion - Time.png|1000px]]
[[File:NFA to DFA conversion - Time.png|1000px]]
== Space Complexity graph ==
[[File:NFA to DFA conversion - Space.png|1000px]]
== Pareto Decades graph ==
[[File:NFA to DFA conversion - Pareto Frontier.png|1000px]]

Latest revision as of 10:07, 28 April 2023

Description

Convert a given nondeterministic finite automota (NFA) to a deterministic finite automota (DFA).

Parameters

$n$: number of states in the given NFA

Table of Algorithms

Name Year Time Space Approximation Factor Model Reference
Rabin–Scott powerset construction 1959 $O({2}^n)$ $O({1})$ Exact Deterministic Time

Time Complexity Graph

NFA to DFA conversion - Time.png