Glushkov's construction algorithmIn computer science theory – particularly formal language theory – Glushkov's construction algorithm, invented by Victor Mikhailovich Glushkov, transforms a given regular expression into an equivalent nondeterministic finite automaton (NFA). Thus, it forms a bridge between regular expressions and nondeterministic finite automata: two abstract representations of the same class of formal languages. A regular expression may be used to conveniently describe an advanced search pattern in a "find and replace"–like operation of a text processing utility. Glushkov's algorithm can be used to transform it into an NFA, which furthermore is small by nature, as the number of its states equals the number of symbols of the regular expression, plus one. Subsequently, the NFA can be made deterministic by the powerset construction and then be minimized to get an optimal automaton corresponding to the given regular expression. The latter format is best suited for execution on a computer. From another, more theoretical point of view, Glushkov's algorithm is a part of the proof that NFA and regular expressions both accept exactly the same languages; that is, the regular languages. The converse of Glushkov's algorithm is Kleene's algorithm, which transforms a finite automaton into a regular expression. The automaton obtained by Glushkov's construction is the same as the one obtained by Thompson's construction algorithm, once its ε-transitions are removed. ConstructionGiven a regular expression e, the Glushkov Construction Algorithm creates a non-deterministic automaton that accepts the language accepted by e.[1][2]: 59–61 The construction uses four steps: Step 1Linearisation of the expression. Each letter of the alphabet appearing in the expression e is renamed, so that each letter occurs at most once in the new expression . Glushkov's construction essentially relies on the fact that represents a local language . Let A be the old alphabet and let B be the new one. Step 2aComputation of the sets , , and . The first, , is the set of letters which occurs as first letter of a word of . The second, , is the set of letters that can end a word of . The last one, , is the set of letter pairs that can occur in words of , i.e. it is the set of factors of length two of the words of . Those sets are mathematically defined by
They are computed by induction over the structure of the expression, as explained below. Step 2bComputation of the set which contains the empty word if this word belongs to , and is the empty set otherwise. Formally, this is , where denotes the empty word. Step 3Computation of automaton recognizing the local language, as defined by , , , and . By definition, the local language defined by the sets P, D, and F is the set of words which begin with a letter of P, end by a letter of D, and whose factors of length 2 belong to F, optionally also including the empty word; that is, it is the language:
Strictly speaking, it is the computation of the automaton for the local language denoted by this linearised expression that is Glushkov's construction. Step 4Remove the linearisation, replacing each indexed letter B by the original letter of A. ExampleConsider[2]: 60–61 the regular expression .
Computation of the set of lettersThe computation of the sets P, D, F, and Λ is done inductively over the regular expression . One must give the values for ∅, ε (the symbols for the empty language and the singleton language containing the empty word), the letters, and the results of the operations .
The most costly operations are the products of sets for the computation of F. PropertiesThe obtained automaton is non-deterministic, and it has as many states as the number of letters of the regular expression, plus one. Furthermore, it has been shown[3]: 215 [4] that Glushkov's automaton is the same as Thompson's automaton when the ε-transitions are removed. Applications and deterministic expressionsThe computation of the automaton by the expression occurs often; it has been systematically used in search functions, in particular by the Unix grep command. Similarly, XML's specification also uses such constructions; for more efficiency, regular expressions of a certain kind, called deterministic expressions, have been studied.[4][5] See alsoNotes and references
External links |
Portal di Ensiklopedia Dunia