Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@tscholl2
Created May 14, 2020 18:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tscholl2/55334c188c0199d8be54e98c714d486c to your computer and use it in GitHub Desktop.
Save tscholl2/55334c188c0199d8be54e98c714d486c to your computer and use it in GitHub Desktop.
const enum Direction {
L = 0,
R = 1,
}
const enum Alphabet {
A = 0,
B = 1,
}
type StateOutput = [
Alphabet, // write
Direction, // move
number // next
];
type State = [StateOutput, StateOutput];
type Program = Array<State>;
type Tape = Array<Alphabet>;
interface Debugger {
step?(tape: Tape, position: number, state: State): any;
}
function run(program: Program, tape: Tape = [], debug?: Debugger) {
let position = 0;
let state = program[0];
while (state && !(debug?.step && debug.step(tape, position, state))) {
const [write, move, next] = state[tape[position] || Alphabet.A];
tape[position] = write;
position += 2 * move - 1;
if (position == -1) {
tape.unshift(Alphabet.A);
position = 0;
}
state = program[next!];
}
return { tape, position };
}
console.log(
run([
[
[Alphabet.B, Direction.R, 1],
[Alphabet.B, Direction.L, 2],
],
[
[Alphabet.B, Direction.L, 0],
[Alphabet.B, Direction.R, 1],
],
[
[Alphabet.B, Direction.L, 1],
[Alphabet.B, Direction.R, -1],
],
])
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment