=====discrete Keyword 3=====
Identification of chosen keyword.
====Definition====
Definition (in your own words) of the chosen keyword.
====References====
List any sites, books, or sources utilized when researching information on this topic. (Remove any filler text).
* Reference 1
* Reference 2
* Reference 3
=====discrete Keyword 3 Phase 2=====
Turing machine
====Definition====
A Turing machine processes symbols on a strip of tape with a set of rules. A Turing machine is not really meant for practical use but more to help computer scientists understand the limits of mechanical computation. A hypothetical device to represent a computing machine.
====References====
List any sites, books, or sources utilized when researching information on this topic. (Remove any filler text).
* http://en.wikipedia.org/wiki/Tree_traversal
=====discrete Keyword 3 Phase 2 Phase 2=====
Identification of chosen keyword.
====Definition====
Definition (in your own words) of the chosen keyword.
====References====
List any sites, books, or sources utilized when researching information on this topic. (Remove any filler text).
* Reference 1
* Reference 2
* Reference 3
====Demonstration====
Demonstration of the indicated keyword.
If you wish to aid your definition with a code sample, you can do so by using a wiki **code** block, an example follows:
/*
* Sample code block
*/
#include
int main()
{
return(0);
}
Alternatively (or additionally), if you want to demonstrate something on the command-line, you can do so as follows:
lab46:~$ cd src
lab46:~/src$ gcc -o hello hello.c
lab46:~/src$ ./hello
Hello, World!
lab46:~/src$
====Demonstration====
Demonstration of the indicated keyword.
If you wish to aid your definition with a code sample, you can do so by using a wiki **code** block, an example follows:
/*
* Sample code block
*/
#include
int main()
{
return(0);
}
Alternatively (or additionally), if you want to demonstrate something on the command-line, you can do so as follows:
lab46:~$ cd src
lab46:~/src$ gcc -o hello hello.c
lab46:~/src$ ./hello
Hello, World!
lab46:~/src$