Skip to content

Latest commit

 

History

History
6 lines (5 loc) · 442 Bytes

File metadata and controls

6 lines (5 loc) · 442 Bytes

Non deterministic Turing Machine simulator

Project for theoretical computer science and algorithms course.

Goal: Develop a C program which simulates a non-deterministic turing machine.
Given the machine nodes, the transition set and a sequence of input tapes, it returns 1 if the machine accepts the input, 0 otherwise.
The implementation is required to pass strict performance (with both memory and time constraints) tests.