Glushkov's construction algorithm

From Wikipedia, the free encyclopedia

In computer science theory – particularly formal language theoryGlushkov'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.

Construction[edit]

Given 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 1[edit]

Linearisation 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 2a[edit]

Computation 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 2b[edit]

Computation 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 3[edit]

Computation 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 4[edit]

Remove the linearisation, replacing each indexed letter B by the original letter of A.

Example[edit]

Automaton constructed by Glushkov's algorithm – linear version
Automaton constructed by Glushkov's algorithm - final version

Consider[2]: 60–61  the regular expression .

  1. The linearized version is
    .
    The letters have been linearized by appending an index to them.
  2. The sets P, D, and F of the first letters, last letters, and factors of length 2 for the linear expression are respectively
    .
    The empty word belongs to the language, hence .
  3. The automaton of the local language
    contains an initial state, denoted 1, and a state for each of the five letters of the alphabet
    .
    There is a transition from 1 to the two states of P, a transition from x to y for , and the three states of D are final, and such is the state 1. All transitions to a letter y have as label the letter y.
  4. Obtain the automaton for by deleting the indices.

Computation of the set of letters[edit]

The 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 .

  1. For Λ, one has
    ,
    ,
    for each letter a,
    ,
    , and
    .
  2. For P, one has
    ,
    for each letter a,
    ,
    , and
    .

    The same formulas are also used for D, except for the product where

    .
  3. For the set of factors of length 2, one has
    for each letter a,
    ,
    , and
    .

The most costly operations are the products of sets for the computation of F.

Properties[edit]

The 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 expressions[edit]

The 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 also[edit]

Notes and references[edit]

  1. ^ V.M. Glushkov (1961). "The abstract theory of automata". Russian Mathematical Surveys (in Russian). 16 (5): 1–53. Bibcode:1961RuMaS..16....1G. doi:10.1070/rm1961v016n05abeh004112. S2CID 250833514.
  2. ^ a b Jean-Éric Pin (Nov 2016). Mathematical Foundations of Automata Theory (PDF). Paris.{{cite book}}: CS1 maint: location missing publisher (link)
  3. ^ Jacques Sakarovitch (Feb 2003). Éléments de théorie des automates. Paris: Vuibert. ISBN 978-2711748075.
  4. ^ a b Jacques Sakarovitch (2009). Elements of Automata Theory. Cambridge: Cambridge University Press. ISBN 9780521844253.
  5. ^ Brüggemann-Klein, Anne (1993). "Regular Expressions into Finite Automata". Theoretical Computer Science. 12 (2): 197–213. doi:10.1016/0304-3975(93)90287-4.

External links[edit]