Check out this link: http://projecteuclid.org/DPubS/Repository/1.0/Disseminate?view=body&id=pdf_1&handle=euclid.pja/1195520719
This is a simpler version of a proof by Chomsky that NSE grammars represent regular languages. Fortunately, the proof technique illustrates how to construct a left-regular grammar from a given NSE grammar. Here's my explanation:
- For each of the |V|(|V|+1)/2 pairs (v1, v2) of elements of |V|, decide whether v1 <= v2 based on the definition given: v1 <= v2 if v2 := V v1 V*.
- Construct equivalence classes such that if v1 <= v2 and v2 <= v1, v1 and v2 are in the same equivalent classes. This will be a partition of all elements of V into one or more equivalence classes.
- Now, for each pair (VE1, VE2) of equivalence classes of V as described above, determine whether VE1 <= VE2 by checking whether v1 in VE1 <= v2 in VE2.
- Construct sets UE corresponding to equivalence classes VE such that if VE_i <= VE_k, VE_i is a subset of UE_k. Each UE_k must also contain the alphabet set E. You will have one UE for each VE, and each UE will contain variables in equivalence classes "less than" the corresponding VE, in addition to all the alphabet symbols.
- Determine P(v) for each variable v as follows: P(v) is the set of all productions in P whose left-hand-sides belong to the equivalence class containing variable v.
- For each variable v, construct a grammar as follows: G(v) = (VE union UE, UE, P(v), v), where VE is the equivalence class containing v and the UE is the one corresponding to the VE.
- The authors have proven a lemma which claims that G(v) is a linear grammar. From this, we can write regular expressions over UE for each variable v. Note that for the UE corresponding to the "smallest" VE, this regular expression will contain only symbols from the original alphabet E.
- Iteratively substitute regular expressions containing only alphabet symbols into more complicated regular expressions obtained from step 7. Eventually, you will have a regular expression corresponding to the language generated from the original start symbol S, and this regular expression will contain only alphabet symbols from the original alphabet.
- You now have a regular expression for the NSE grammar, and can obtain a minimal DFA using Kleene's theorem, the subset construction, and a DFA minimization algorithm.
If you would like an example, I can try to provide one later. Try to do a few yourself, read the paper (it's short), and we can talk about complexity later on.