Trisha Shetty (Editor)

Queue automaton

Updated on
Edit
Like
Comment
Share on FacebookTweet on TwitterShare on LinkedInShare on Reddit

A queue machine or queue automaton is a finite state machine with the ability to store and retrieve data from an infinite-memory queue. It is a model of computation equivalent to a Turing machine, and therefore it can process the same class of formal languages.

Contents

Theory

A queue machine can be defined as a six-tuple

M = ( Q , Σ , Γ , $ , s , δ ) where
  • Q is a finite set of states;
  • Σ Γ is the finite set of the input alphabet;
  • Γ is the finite queue alphabet;
  • $ Γ Σ is the initial queue symbol;
  • s Q is the start state;
  • δ : Q × Γ Q × Γ is the transition function.
  • A machine configuration is an ordered pair of its state and queue contents ( q , γ ) Q × Γ , where Γ denotes the Kleene closure of Γ . The starting configuration on an input string x is defined as ( s , x $ ) , and the transition M 1 from one configuration to the next is defined as:

    ( p , A α ) M 1 ( q , α γ )

    where A is a symbol from the queue alphabet, α is a sequence of queue symbols ( α Γ ), and ( q , γ ) = δ ( p , A ) . Note the "first-in-first-out" property of the queue in the relation.

    The machine accepts a string x Σ if after a finite number of transitions the starting configuration evolves to exhaust the string (reaching a null string ϵ ), or ( s , x $ ) M ( q , ϵ ) .

    Turing completeness

    We can prove that a queue machine is equivalent to a Turing machine by showing that a queue machine can simulate a Turing machine and vice versa.

    A Turing machine can be simulated by a queue machine that keeps a copy of the Turing machine's contents in its queue at all times, with two special markers: one for the TM's head position, and one for the end of the tape; its transitions simulate those of the TM by running through the whole queue, popping off each of its symbols and re-enqueing either the popped symbol, or, near the head position, the equivalent of the TM transition's effect.

    A queue machine can be simulated by a Turing machine, but more easily by a multi-tape Turing machine, which is known to be equivalent to a normal single-tape machine. The simulating queue machine reads input on one tape and stores the queue on the second, with pushes and pops defined by simple transitions to the beginning and end symbols of the tape. A formal proof of this is often an exercise in theoretical computer science courses.

    Applications

    Queue machines offer a simple model on which to base computer architectures, programming languages, or algorithms.

    References

    Queue automaton Wikipedia