|
|
|
|
|
by toxik
2564 days ago
|
|
More precisely, construct a graph with vertices (u, v) where u is a prior state and v a possible successor state, then there must not be a node of out-degree zero unless it is an end state. As far as complexity goes, this should be linear in number of vertices. In fact, you don't even really have to construct the graph, just count out degree. |
|