├── .gitignore ├── Automaton ├── DFA3.1.py ├── DPDA4.1.py ├── GrammarAnalyzer4.3.2.py ├── LexicalAnalyzer4.3.1.py ├── NFA3.2.py ├── NFASimulation3.4.py ├── NPDA4.2.py └── Pattern3.3.py ├── LICENSE ├── LambdaCalculus ├── FizzBuzz.py ├── LambdaCalculus7.1.py └── lambda6.1.py ├── README.md ├── Simple ├── Denotation2.4.py ├── Evaluate2.3.2.py ├── Machine2.3.1-1.py └── Machine2.3.1-2.py ├── Turing └── DTM.py ├── combinations ├── MultiInt.py ├── combinations_generater.py ├── enumerations_generater.py └── permutations_generater.py ├── graphs ├── depth_first_paths.py ├── depth_first_search.py └── undirected_graphs.py ├── search ├── binary_search_tree.py ├── print_tree │ ├── MANIFEST │ ├── Makefile │ ├── README │ ├── mdoc.l │ ├── sample │ ├── tex.c │ ├── texsample │ ├── tpar │ ├── tpar.l │ ├── tpsample │ ├── tree.1 │ ├── tree.l │ ├── unpar │ ├── unpar.l │ └── use.raw └── tree_ergodic.py └── sort ├── QuickSortDemo.java ├── counting_sort.py ├── heap_sort.py ├── insertion_sort.py ├── merge_sort.py ├── quick_sort.py ├── radix_sort.py ├── selection_sort.py └── shell_sort.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/.gitignore -------------------------------------------------------------------------------- /Automaton/DFA3.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/Automaton/DFA3.1.py -------------------------------------------------------------------------------- /Automaton/DPDA4.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/Automaton/DPDA4.1.py -------------------------------------------------------------------------------- /Automaton/GrammarAnalyzer4.3.2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/Automaton/GrammarAnalyzer4.3.2.py -------------------------------------------------------------------------------- /Automaton/LexicalAnalyzer4.3.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/Automaton/LexicalAnalyzer4.3.1.py -------------------------------------------------------------------------------- /Automaton/NFA3.2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/Automaton/NFA3.2.py -------------------------------------------------------------------------------- /Automaton/NFASimulation3.4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/Automaton/NFASimulation3.4.py -------------------------------------------------------------------------------- /Automaton/NPDA4.2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/Automaton/NPDA4.2.py -------------------------------------------------------------------------------- /Automaton/Pattern3.3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/Automaton/Pattern3.3.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/LICENSE -------------------------------------------------------------------------------- /LambdaCalculus/FizzBuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/LambdaCalculus/FizzBuzz.py -------------------------------------------------------------------------------- /LambdaCalculus/LambdaCalculus7.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/LambdaCalculus/LambdaCalculus7.1.py -------------------------------------------------------------------------------- /LambdaCalculus/lambda6.1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/LambdaCalculus/lambda6.1.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/README.md -------------------------------------------------------------------------------- /Simple/Denotation2.4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/Simple/Denotation2.4.py -------------------------------------------------------------------------------- /Simple/Evaluate2.3.2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/Simple/Evaluate2.3.2.py -------------------------------------------------------------------------------- /Simple/Machine2.3.1-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/Simple/Machine2.3.1-1.py -------------------------------------------------------------------------------- /Simple/Machine2.3.1-2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/Simple/Machine2.3.1-2.py -------------------------------------------------------------------------------- /Turing/DTM.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/Turing/DTM.py -------------------------------------------------------------------------------- /combinations/MultiInt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/combinations/MultiInt.py -------------------------------------------------------------------------------- /combinations/combinations_generater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/combinations/combinations_generater.py -------------------------------------------------------------------------------- /combinations/enumerations_generater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/combinations/enumerations_generater.py -------------------------------------------------------------------------------- /combinations/permutations_generater.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/combinations/permutations_generater.py -------------------------------------------------------------------------------- /graphs/depth_first_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/graphs/depth_first_paths.py -------------------------------------------------------------------------------- /graphs/depth_first_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/graphs/depth_first_search.py -------------------------------------------------------------------------------- /graphs/undirected_graphs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/graphs/undirected_graphs.py -------------------------------------------------------------------------------- /search/binary_search_tree.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/binary_search_tree.py -------------------------------------------------------------------------------- /search/print_tree/MANIFEST: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/print_tree/MANIFEST -------------------------------------------------------------------------------- /search/print_tree/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/print_tree/Makefile -------------------------------------------------------------------------------- /search/print_tree/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/print_tree/README -------------------------------------------------------------------------------- /search/print_tree/mdoc.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/print_tree/mdoc.l -------------------------------------------------------------------------------- /search/print_tree/sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/print_tree/sample -------------------------------------------------------------------------------- /search/print_tree/tex.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/print_tree/tex.c -------------------------------------------------------------------------------- /search/print_tree/texsample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/print_tree/texsample -------------------------------------------------------------------------------- /search/print_tree/tpar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/print_tree/tpar -------------------------------------------------------------------------------- /search/print_tree/tpar.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/print_tree/tpar.l -------------------------------------------------------------------------------- /search/print_tree/tpsample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/print_tree/tpsample -------------------------------------------------------------------------------- /search/print_tree/tree.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/print_tree/tree.1 -------------------------------------------------------------------------------- /search/print_tree/tree.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/print_tree/tree.l -------------------------------------------------------------------------------- /search/print_tree/unpar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/print_tree/unpar -------------------------------------------------------------------------------- /search/print_tree/unpar.l: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/print_tree/unpar.l -------------------------------------------------------------------------------- /search/print_tree/use.raw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/print_tree/use.raw -------------------------------------------------------------------------------- /search/tree_ergodic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/search/tree_ergodic.py -------------------------------------------------------------------------------- /sort/QuickSortDemo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/sort/QuickSortDemo.java -------------------------------------------------------------------------------- /sort/counting_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/sort/counting_sort.py -------------------------------------------------------------------------------- /sort/heap_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/sort/heap_sort.py -------------------------------------------------------------------------------- /sort/insertion_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/sort/insertion_sort.py -------------------------------------------------------------------------------- /sort/merge_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/sort/merge_sort.py -------------------------------------------------------------------------------- /sort/quick_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/sort/quick_sort.py -------------------------------------------------------------------------------- /sort/radix_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/sort/radix_sort.py -------------------------------------------------------------------------------- /sort/selection_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/sort/selection_sort.py -------------------------------------------------------------------------------- /sort/shell_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cforth/toys/HEAD/sort/shell_sort.py --------------------------------------------------------------------------------