Turing Machine Simulator - Design Algorithm
All the CS & IT Students have to study 'Turing Machine' under computation theory.
Quoting from wikipedia:
Just write the basic functions.
Quoting from wikipedia:
A Turing machine is a device that manipulates symbols on a strip of tape according to a table of rules. Despite its simplicity, a Turing machine can be adapted to simulate the logic of any <a href="https://en.wikipedia.org/wiki/Computer" target="_blank" rel="noopener noreferrer">Computer</a> <a href="https://en.wikipedia.org/wiki/Algorithm" target="_blank" rel="noopener noreferrer">Algorithm</a>, and is particularly useful in explaining the functions of a <a href="https://en.wikipedia.org/wiki/CPU" target="_blank" rel="noopener noreferrer">Cpu</a> inside a computer.Let us try to write a code for simulating the operation of turing machine (in any language convenient to you)
Just write the basic functions.
0