├── 2 ├── 2-1.pdf ├── 2-1.tex ├── 2-4.pdf ├── 2-4.scm ├── 2-4.tex ├── chapter.scm └── inversions.scm ├── 4 ├── 4-7.pdf └── 4-7.tex ├── 5 ├── 5-2.scm ├── chapter.scm ├── deterministic-search.scm ├── random-search.scm └── scramble-search.scm ├── 6 ├── 6-1.scm ├── 6-2.scm ├── 6-3.scm ├── build-max-heap-prime.scm ├── chapter.scm ├── heap-extract-max-dary.scm └── young-tableau.scm ├── 7 ├── 7-1.scm ├── 7-3.scm ├── 7-4.scm ├── 7-5.scm ├── 7-6.scm ├── chapter.scm ├── fuzzy-sort.scm ├── hoare-quicksort.scm ├── median-of-three-quicksort.scm ├── stooge-sort.scm └── tail-quicksort.scm ├── 8 ├── 8-2.scm ├── 8-3.scm ├── 8-4.scm ├── 8-5.scm ├── chapter.scm ├── counting-sort-bang.scm ├── jugs.scm ├── k-sort.scm └── radix-sort-cardinality.scm ├── 9 ├── 9-1.txt ├── 9-2a.txt ├── 9-2b.scm ├── 9-2c.scm ├── 9-2e.scm ├── chapter.scm └── weighted-median.scm ├── 10 └── 10-1.txt ├── 12 ├── 12-1.txt ├── 12-2.scm ├── chapter.scm └── radix-tree.scm ├── 13 ├── 13.1-1a.dot ├── 13.1-1a.png ├── 13.1-1b.dot ├── 13.1-1b.png ├── 13.1-1c.dot ├── 13.1-1c.png ├── 13.1-2.dot ├── 13.1-2.png ├── 13.3-2.dot ├── 13.3-2.png ├── 13.3-2.scm ├── 13.3-3a.dot ├── 13.3-3a.png ├── 13.3-3b.dot ├── 13.3-3b.png ├── 13.3-3c.dot ├── 13.3-3c.png ├── 13.3-6.scm ├── TODO ├── notes.org └── red-black-tree.scm ├── 15 ├── 15-1.pdf ├── 15-1.scm ├── 15-1.tex ├── 15-2.pdf ├── 15-2.scm ├── 15-2.tex ├── 15-3.scm ├── 15-5.bib ├── 15-5.pdf ├── 15-5.scm ├── 15-5.tex ├── 15-7.bib ├── 15-7.pdf ├── 15-7.scm ├── 15-7.tex ├── bitonic-euclidean.scm ├── chapter.scm ├── edit-distance.scm ├── print-neatly.scm ├── scheduling.scm └── viterbi.scm ├── 16 ├── 16-1.scm ├── 16-2.scm ├── change.scm ├── chapter.scm └── schedule.scm ├── 17 ├── 17-1.pdf ├── 17-1.tex ├── 17-2.pdf └── 17-2.tex ├── 20 ├── 20-2.scm ├── chapter.scm └── fibonacci.scm ├── 10.1 ├── 10.1-1.scm ├── 10.1-2.txt ├── 10.1-3.scm ├── 10.1-4.scm ├── 10.1-5.scm ├── 10.1-6.scm ├── 10.1-7.scm ├── deque.scm ├── figure-10.2.scm ├── queue.scm ├── section.scm ├── stack-queue.scm └── stack.scm ├── 10.2 ├── 10.2-2.scm ├── 10.2-3.scm ├── 10.2-4.scm ├── 10.2-5.scm ├── 10.2-6.scm ├── 10.2-7.scm ├── linked-list.scm └── section.scm ├── 10.3 ├── 10.3-2.scm ├── 10.3-4.scm ├── 10.3-5.scm ├── array-list.scm ├── marray-list.scm └── section.scm ├── 10.4 ├── 10.4-2.scm ├── 10.4-3.scm ├── 10.4-4.scm ├── section.scm └── tree.scm ├── 11.1 ├── 11.1-1.scm ├── 11.1-2.scm ├── 11.1-3.scm ├── bit-vector.scm ├── direct-address.scm └── section.scm ├── 11.2 ├── 11.2-2.scm ├── 11.2-3.txt ├── 11.2-4.scm ├── chained-hash.scm ├── linked-hash.scm └── section.scm ├── 11.3 ├── 11.3-1.txt ├── 11.3-2.txt └── 11.3-4.scm ├── 11.4 ├── 11.4-1.scm ├── 11.4-2.scm ├── 11.4-4.txt ├── open-addressing.scm └── section.scm ├── 12.1 ├── 12.1-1.dot ├── 12.1-1.png ├── 12.1-2.txt ├── 12.1-3.scm ├── 12.1-4.scm ├── 12.1-5.txt ├── binary-tree.scm └── section.scm ├── 12.2 ├── 12.2-1.txt ├── 12.2-2.scm ├── 12.2-3.scm ├── 12.2-4.dot ├── 12.2-4.png ├── 12.2-5.txt ├── 12.2-6.txt ├── 12.2-7.txt ├── 12.2-8.txt ├── 12.2-9.txt ├── binary-tree.scm └── section.scm ├── 12.3 ├── 12.3-1.scm ├── 12.3-2.txt ├── 12.3-3.txt ├── 12.3-4.scm ├── 12.3-5.dot ├── 12.3-5.png ├── 12.3-6.scm ├── binary-tree.scm ├── delete-test.scm └── section.scm ├── 15.1 ├── 15.1-1.scm ├── 15.1-2.bib ├── 15.1-2.pdf ├── 15.1-2.tex ├── 15.1-3.pdf ├── 15.1-3.tex ├── 15.1-4.scm ├── 15.1-5.pdf ├── 15.1-5.tex ├── fastest-way.scm ├── figure-15.2.scm └── section.scm ├── 15.2 ├── 15.2-1.scm ├── 15.2-2.scm ├── 15.2-3.bib ├── 15.2-3.pdf ├── 15.2-3.tex ├── 15.2-4.pdf ├── 15.2-4.tex ├── 15.2-5-backbone.dot ├── 15.2-5-backbone.png ├── 15.2-5-stacked.dot ├── 15.2-5-stacked.png ├── 15.2-5.pdf ├── 15.2-5.tex ├── figure-15.3.scm ├── matrix-multiply-test.scm ├── matrix.scm └── section.scm ├── 15.3 ├── 15.3-1.pdf ├── 15.3-1.tex ├── 15.3-2.dot ├── 15.3-2.pdf ├── 15.3-2.png ├── 15.3-2.tex ├── 15.3-3.pdf ├── 15.3-3.tex ├── 15.3-4.dot ├── 15.3-4.pdf ├── 15.3-4.png ├── 15.3-4.tex ├── 15.3-5.scm ├── matrix.scm └── section.scm ├── 15.4 ├── 15.4-1.scm ├── 15.4-2.scm ├── 15.4-3.scm ├── 15.4-4.scm ├── 15.4-5.scm ├── figure-15.6.scm ├── iter-vs-memo.pdf ├── iter-vs-memo.tex ├── lcs.scm └── section.scm ├── 15.5 ├── 15.5-1.scm ├── 15.5-2.scm ├── 15.5-3.pdf ├── 15.5-3.tex ├── bst.scm ├── figure-15.7.scm └── section.scm ├── 16.1 ├── 16.1-1.scm ├── 16.1-2.scm ├── 16.1-3.scm ├── 16.1-4.txt ├── activity.scm └── section.scm ├── 16.2 ├── 16.2-1.pdf ├── 16.2-1.tex ├── 16.2-2.scm ├── 16.2-3.scm ├── 16.2-4.scm ├── 16.2-5.scm ├── 16.2-7.scm ├── gas.scm ├── knapsack.scm ├── payoff.scm ├── section.scm └── units.scm ├── 16.3 ├── 16.3-1.txt ├── 16.3-2.scm ├── 16.3-3.txt ├── 16.3-4.pdf ├── 16.3-4.tex ├── 16.3-5.txt ├── 16.3-6.txt ├── 16.3-7.scm ├── figure-16.5.scm ├── figure-6.3.scm ├── huffman.scm ├── priority-queue.scm └── section.scm ├── 17.1 ├── 17.1-1.txt ├── 17.1-2.txt ├── 17.1-3.pdf └── 17.1-3.tex ├── 17.2 ├── 17.2-1.txt ├── 17.2-2.txt └── 17.2-3.txt ├── 17.4 ├── 17.4-1.txt ├── 17.4-2.txt └── 17.4-3.txt ├── 2.1 ├── insertion-sort.scm └── section.scm ├── 2.3 ├── 2.3-7.scm ├── section.scm └── sum-search.scm ├── 20.2 ├── 20.2-1.scm ├── 20.2-2.txt ├── 20.2-3.txt ├── 20.2-4.txt ├── 20.2-5.txt ├── TODO ├── fibonacci-test.scm ├── fibonacci.scm ├── figure-20.3.scm └── section.scm ├── 20.3 ├── 20.3-1.txt ├── 20.3-2.txt ├── fibonacci.scm ├── figure-20.4.scm └── section.scm ├── 20.4 └── 20.4-1.txt ├── 23.1 ├── 23.1-1.txt ├── 23.1-10.txt ├── 23.1-2.dot ├── 23.1-2.png ├── 23.1-2.txt ├── 23.1-3.txt ├── 23.1-4.dot ├── 23.1-4.png ├── 23.1-5.txt ├── 23.1-6.dot ├── 23.1-6.png ├── 23.1-6.txt ├── 23.1-7.dot ├── 23.1-7.png ├── 23.1-7.txt ├── 23.1-8.txt └── 23.1-9.txt ├── 23.2 ├── figure-23.4-prim.scm ├── figure-23.4.scm ├── graph.scm ├── kruskal.scm ├── prim.scm ├── section.scm └── set.scm ├── 5.4 ├── randomize-in-place-test.scm ├── randomize-in-place.scm ├── section.scm └── swap-bang.scm ├── 6.2 ├── 6.2-1.scm ├── figure-6.2.scm ├── heap.scm ├── max-heapify.scm └── section.scm ├── 6.3 ├── 6.3-1.scm ├── 6.3-2.txt ├── build-max-heap.scm └── section.scm ├── 6.4 ├── 6.4-1.scm ├── heapsort.scm └── section.scm ├── 6.5 ├── 6.5-1.scm ├── 6.5-2.scm ├── 6.5-3.scm ├── 6.5-7.scm ├── 6.5-8.scm ├── priority-queue.scm └── section.scm ├── 7.1 ├── 7.1-1.scm ├── 7.1-2.scm ├── 7.1-4.scm ├── quicksort.scm └── section.scm ├── 7.3 ├── 7.3.scm ├── randomized-quicksort.scm └── section.scm ├── 7.4 ├── 7.4-5.scm ├── insertion-quicksort.scm └── section.scm ├── 8.2 ├── 8.2-1.scm ├── 8.2-2.txt ├── 8.2-3.scm ├── 8.2-4.scm ├── counting-sort.scm └── section.scm ├── 8.3 ├── 8.3-1.scm ├── figure-8.3.scm ├── radix-sort.scm └── section.scm ├── 8.4 ├── 8.4-1.scm ├── 8.4-2.txt ├── bucket-sort.scm └── section.scm ├── 9.1 ├── 9-1.scm ├── min-max-test.scm ├── min-max.scm ├── section.scm └── tournament-min.scm ├── 9.2 ├── 9.2-1.scm ├── 9.2-2.txt ├── 9.2-3.scm ├── 9.2-4.txt ├── randomized-select.scm └── section.scm ├── 9.3 ├── 9.3-1.txt ├── 9.3-3.scm ├── 9.3-5.scm ├── 9.3-6.scm ├── 9.3-7.scm ├── 9.3-8.scm ├── 9.3-9.txt ├── balanced-quicksort.scm ├── quantiles.scm ├── section.scm ├── select-test.scm └── select.scm ├── TODO ├── notes.org ├── srfi ├── srfi-70-impl.scm └── srfi-70.scm └── util ├── debug.scm ├── string.scm ├── test.scm └── util.scm /10.1/10.1-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.1/10.1-1.scm -------------------------------------------------------------------------------- /10.1/10.1-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.1/10.1-2.txt -------------------------------------------------------------------------------- /10.1/10.1-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.1/10.1-3.scm -------------------------------------------------------------------------------- /10.1/10.1-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.1/10.1-4.scm -------------------------------------------------------------------------------- /10.1/10.1-5.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.1/10.1-5.scm -------------------------------------------------------------------------------- /10.1/10.1-6.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.1/10.1-6.scm -------------------------------------------------------------------------------- /10.1/10.1-7.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.1/10.1-7.scm -------------------------------------------------------------------------------- /10.1/deque.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.1/deque.scm -------------------------------------------------------------------------------- /10.1/figure-10.2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.1/figure-10.2.scm -------------------------------------------------------------------------------- /10.1/queue.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.1/queue.scm -------------------------------------------------------------------------------- /10.1/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.1/section.scm -------------------------------------------------------------------------------- /10.1/stack-queue.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.1/stack-queue.scm -------------------------------------------------------------------------------- /10.1/stack.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.1/stack.scm -------------------------------------------------------------------------------- /10.2/10.2-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.2/10.2-2.scm -------------------------------------------------------------------------------- /10.2/10.2-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.2/10.2-3.scm -------------------------------------------------------------------------------- /10.2/10.2-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.2/10.2-4.scm -------------------------------------------------------------------------------- /10.2/10.2-5.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.2/10.2-5.scm -------------------------------------------------------------------------------- /10.2/10.2-6.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.2/10.2-6.scm -------------------------------------------------------------------------------- /10.2/10.2-7.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.2/10.2-7.scm -------------------------------------------------------------------------------- /10.2/linked-list.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.2/linked-list.scm -------------------------------------------------------------------------------- /10.2/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.2/section.scm -------------------------------------------------------------------------------- /10.3/10.3-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.3/10.3-2.scm -------------------------------------------------------------------------------- /10.3/10.3-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.3/10.3-4.scm -------------------------------------------------------------------------------- /10.3/10.3-5.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.3/10.3-5.scm -------------------------------------------------------------------------------- /10.3/array-list.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.3/array-list.scm -------------------------------------------------------------------------------- /10.3/marray-list.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.3/marray-list.scm -------------------------------------------------------------------------------- /10.3/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.3/section.scm -------------------------------------------------------------------------------- /10.4/10.4-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.4/10.4-2.scm -------------------------------------------------------------------------------- /10.4/10.4-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.4/10.4-3.scm -------------------------------------------------------------------------------- /10.4/10.4-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.4/10.4-4.scm -------------------------------------------------------------------------------- /10.4/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.4/section.scm -------------------------------------------------------------------------------- /10.4/tree.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10.4/tree.scm -------------------------------------------------------------------------------- /10/10-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/10/10-1.txt -------------------------------------------------------------------------------- /11.1/11.1-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.1/11.1-1.scm -------------------------------------------------------------------------------- /11.1/11.1-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.1/11.1-2.scm -------------------------------------------------------------------------------- /11.1/11.1-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.1/11.1-3.scm -------------------------------------------------------------------------------- /11.1/bit-vector.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.1/bit-vector.scm -------------------------------------------------------------------------------- /11.1/direct-address.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.1/direct-address.scm -------------------------------------------------------------------------------- /11.1/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.1/section.scm -------------------------------------------------------------------------------- /11.2/11.2-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.2/11.2-2.scm -------------------------------------------------------------------------------- /11.2/11.2-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.2/11.2-3.txt -------------------------------------------------------------------------------- /11.2/11.2-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.2/11.2-4.scm -------------------------------------------------------------------------------- /11.2/chained-hash.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.2/chained-hash.scm -------------------------------------------------------------------------------- /11.2/linked-hash.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.2/linked-hash.scm -------------------------------------------------------------------------------- /11.2/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.2/section.scm -------------------------------------------------------------------------------- /11.3/11.3-1.txt: -------------------------------------------------------------------------------- 1 | Sort by hash value. 2 | -------------------------------------------------------------------------------- /11.3/11.3-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.3/11.3-2.txt -------------------------------------------------------------------------------- /11.3/11.3-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.3/11.3-4.scm -------------------------------------------------------------------------------- /11.4/11.4-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.4/11.4-1.scm -------------------------------------------------------------------------------- /11.4/11.4-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.4/11.4-2.scm -------------------------------------------------------------------------------- /11.4/11.4-4.txt: -------------------------------------------------------------------------------- 1 | 4; 1.849; 8; 2.377 2 | -------------------------------------------------------------------------------- /11.4/open-addressing.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.4/open-addressing.scm -------------------------------------------------------------------------------- /11.4/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/11.4/section.scm -------------------------------------------------------------------------------- /12.1/12.1-1.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.1/12.1-1.dot -------------------------------------------------------------------------------- /12.1/12.1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.1/12.1-1.png -------------------------------------------------------------------------------- /12.1/12.1-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.1/12.1-2.txt -------------------------------------------------------------------------------- /12.1/12.1-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.1/12.1-3.scm -------------------------------------------------------------------------------- /12.1/12.1-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.1/12.1-4.scm -------------------------------------------------------------------------------- /12.1/12.1-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.1/12.1-5.txt -------------------------------------------------------------------------------- /12.1/binary-tree.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.1/binary-tree.scm -------------------------------------------------------------------------------- /12.1/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.1/section.scm -------------------------------------------------------------------------------- /12.2/12.2-1.txt: -------------------------------------------------------------------------------- 1 | c. 912 cannot be in the left tree of 911. 2 | -------------------------------------------------------------------------------- /12.2/12.2-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.2/12.2-2.scm -------------------------------------------------------------------------------- /12.2/12.2-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.2/12.2-3.scm -------------------------------------------------------------------------------- /12.2/12.2-4.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.2/12.2-4.dot -------------------------------------------------------------------------------- /12.2/12.2-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.2/12.2-4.png -------------------------------------------------------------------------------- /12.2/12.2-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.2/12.2-5.txt -------------------------------------------------------------------------------- /12.2/12.2-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.2/12.2-6.txt -------------------------------------------------------------------------------- /12.2/12.2-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.2/12.2-7.txt -------------------------------------------------------------------------------- /12.2/12.2-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.2/12.2-8.txt -------------------------------------------------------------------------------- /12.2/12.2-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.2/12.2-9.txt -------------------------------------------------------------------------------- /12.2/binary-tree.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.2/binary-tree.scm -------------------------------------------------------------------------------- /12.2/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.2/section.scm -------------------------------------------------------------------------------- /12.3/12.3-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.3/12.3-1.scm -------------------------------------------------------------------------------- /12.3/12.3-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.3/12.3-2.txt -------------------------------------------------------------------------------- /12.3/12.3-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.3/12.3-3.txt -------------------------------------------------------------------------------- /12.3/12.3-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.3/12.3-4.scm -------------------------------------------------------------------------------- /12.3/12.3-5.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.3/12.3-5.dot -------------------------------------------------------------------------------- /12.3/12.3-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.3/12.3-5.png -------------------------------------------------------------------------------- /12.3/12.3-6.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.3/12.3-6.scm -------------------------------------------------------------------------------- /12.3/binary-tree.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.3/binary-tree.scm -------------------------------------------------------------------------------- /12.3/delete-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.3/delete-test.scm -------------------------------------------------------------------------------- /12.3/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12.3/section.scm -------------------------------------------------------------------------------- /12/12-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12/12-1.txt -------------------------------------------------------------------------------- /12/12-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12/12-2.scm -------------------------------------------------------------------------------- /12/chapter.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12/chapter.scm -------------------------------------------------------------------------------- /12/radix-tree.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/12/radix-tree.scm -------------------------------------------------------------------------------- /13/13.1-1a.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.1-1a.dot -------------------------------------------------------------------------------- /13/13.1-1a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.1-1a.png -------------------------------------------------------------------------------- /13/13.1-1b.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.1-1b.dot -------------------------------------------------------------------------------- /13/13.1-1b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.1-1b.png -------------------------------------------------------------------------------- /13/13.1-1c.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.1-1c.dot -------------------------------------------------------------------------------- /13/13.1-1c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.1-1c.png -------------------------------------------------------------------------------- /13/13.1-2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.1-2.dot -------------------------------------------------------------------------------- /13/13.1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.1-2.png -------------------------------------------------------------------------------- /13/13.3-2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.3-2.dot -------------------------------------------------------------------------------- /13/13.3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.3-2.png -------------------------------------------------------------------------------- /13/13.3-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.3-2.scm -------------------------------------------------------------------------------- /13/13.3-3a.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.3-3a.dot -------------------------------------------------------------------------------- /13/13.3-3a.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.3-3a.png -------------------------------------------------------------------------------- /13/13.3-3b.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.3-3b.dot -------------------------------------------------------------------------------- /13/13.3-3b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.3-3b.png -------------------------------------------------------------------------------- /13/13.3-3c.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.3-3c.dot -------------------------------------------------------------------------------- /13/13.3-3c.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.3-3c.png -------------------------------------------------------------------------------- /13/13.3-6.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/13.3-6.scm -------------------------------------------------------------------------------- /13/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/TODO -------------------------------------------------------------------------------- /13/notes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/notes.org -------------------------------------------------------------------------------- /13/red-black-tree.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/13/red-black-tree.scm -------------------------------------------------------------------------------- /15.1/15.1-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.1/15.1-1.scm -------------------------------------------------------------------------------- /15.1/15.1-2.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.1/15.1-2.bib -------------------------------------------------------------------------------- /15.1/15.1-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.1/15.1-2.pdf -------------------------------------------------------------------------------- /15.1/15.1-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.1/15.1-2.tex -------------------------------------------------------------------------------- /15.1/15.1-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.1/15.1-3.pdf -------------------------------------------------------------------------------- /15.1/15.1-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.1/15.1-3.tex -------------------------------------------------------------------------------- /15.1/15.1-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.1/15.1-4.scm -------------------------------------------------------------------------------- /15.1/15.1-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.1/15.1-5.pdf -------------------------------------------------------------------------------- /15.1/15.1-5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.1/15.1-5.tex -------------------------------------------------------------------------------- /15.1/fastest-way.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.1/fastest-way.scm -------------------------------------------------------------------------------- /15.1/figure-15.2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.1/figure-15.2.scm -------------------------------------------------------------------------------- /15.1/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.1/section.scm -------------------------------------------------------------------------------- /15.2/15.2-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/15.2-1.scm -------------------------------------------------------------------------------- /15.2/15.2-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/15.2-2.scm -------------------------------------------------------------------------------- /15.2/15.2-3.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/15.2-3.bib -------------------------------------------------------------------------------- /15.2/15.2-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/15.2-3.pdf -------------------------------------------------------------------------------- /15.2/15.2-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/15.2-3.tex -------------------------------------------------------------------------------- /15.2/15.2-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/15.2-4.pdf -------------------------------------------------------------------------------- /15.2/15.2-4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/15.2-4.tex -------------------------------------------------------------------------------- /15.2/15.2-5-backbone.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/15.2-5-backbone.dot -------------------------------------------------------------------------------- /15.2/15.2-5-backbone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/15.2-5-backbone.png -------------------------------------------------------------------------------- /15.2/15.2-5-stacked.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/15.2-5-stacked.dot -------------------------------------------------------------------------------- /15.2/15.2-5-stacked.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/15.2-5-stacked.png -------------------------------------------------------------------------------- /15.2/15.2-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/15.2-5.pdf -------------------------------------------------------------------------------- /15.2/15.2-5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/15.2-5.tex -------------------------------------------------------------------------------- /15.2/figure-15.3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/figure-15.3.scm -------------------------------------------------------------------------------- /15.2/matrix-multiply-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/matrix-multiply-test.scm -------------------------------------------------------------------------------- /15.2/matrix.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/matrix.scm -------------------------------------------------------------------------------- /15.2/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.2/section.scm -------------------------------------------------------------------------------- /15.3/15.3-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.3/15.3-1.pdf -------------------------------------------------------------------------------- /15.3/15.3-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.3/15.3-1.tex -------------------------------------------------------------------------------- /15.3/15.3-2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.3/15.3-2.dot -------------------------------------------------------------------------------- /15.3/15.3-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.3/15.3-2.pdf -------------------------------------------------------------------------------- /15.3/15.3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.3/15.3-2.png -------------------------------------------------------------------------------- /15.3/15.3-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.3/15.3-2.tex -------------------------------------------------------------------------------- /15.3/15.3-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.3/15.3-3.pdf -------------------------------------------------------------------------------- /15.3/15.3-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.3/15.3-3.tex -------------------------------------------------------------------------------- /15.3/15.3-4.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.3/15.3-4.dot -------------------------------------------------------------------------------- /15.3/15.3-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.3/15.3-4.pdf -------------------------------------------------------------------------------- /15.3/15.3-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.3/15.3-4.png -------------------------------------------------------------------------------- /15.3/15.3-4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.3/15.3-4.tex -------------------------------------------------------------------------------- /15.3/15.3-5.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.3/15.3-5.scm -------------------------------------------------------------------------------- /15.3/matrix.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.3/matrix.scm -------------------------------------------------------------------------------- /15.3/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.3/section.scm -------------------------------------------------------------------------------- /15.4/15.4-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.4/15.4-1.scm -------------------------------------------------------------------------------- /15.4/15.4-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.4/15.4-2.scm -------------------------------------------------------------------------------- /15.4/15.4-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.4/15.4-3.scm -------------------------------------------------------------------------------- /15.4/15.4-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.4/15.4-4.scm -------------------------------------------------------------------------------- /15.4/15.4-5.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.4/15.4-5.scm -------------------------------------------------------------------------------- /15.4/figure-15.6.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.4/figure-15.6.scm -------------------------------------------------------------------------------- /15.4/iter-vs-memo.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.4/iter-vs-memo.pdf -------------------------------------------------------------------------------- /15.4/iter-vs-memo.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.4/iter-vs-memo.tex -------------------------------------------------------------------------------- /15.4/lcs.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.4/lcs.scm -------------------------------------------------------------------------------- /15.4/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.4/section.scm -------------------------------------------------------------------------------- /15.5/15.5-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.5/15.5-1.scm -------------------------------------------------------------------------------- /15.5/15.5-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.5/15.5-2.scm -------------------------------------------------------------------------------- /15.5/15.5-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.5/15.5-3.pdf -------------------------------------------------------------------------------- /15.5/15.5-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.5/15.5-3.tex -------------------------------------------------------------------------------- /15.5/bst.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.5/bst.scm -------------------------------------------------------------------------------- /15.5/figure-15.7.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.5/figure-15.7.scm -------------------------------------------------------------------------------- /15.5/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15.5/section.scm -------------------------------------------------------------------------------- /15/15-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/15-1.pdf -------------------------------------------------------------------------------- /15/15-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/15-1.scm -------------------------------------------------------------------------------- /15/15-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/15-1.tex -------------------------------------------------------------------------------- /15/15-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/15-2.pdf -------------------------------------------------------------------------------- /15/15-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/15-2.scm -------------------------------------------------------------------------------- /15/15-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/15-2.tex -------------------------------------------------------------------------------- /15/15-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/15-3.scm -------------------------------------------------------------------------------- /15/15-5.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/15-5.bib -------------------------------------------------------------------------------- /15/15-5.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/15-5.pdf -------------------------------------------------------------------------------- /15/15-5.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/15-5.scm -------------------------------------------------------------------------------- /15/15-5.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/15-5.tex -------------------------------------------------------------------------------- /15/15-7.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/15-7.bib -------------------------------------------------------------------------------- /15/15-7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/15-7.pdf -------------------------------------------------------------------------------- /15/15-7.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/15-7.scm -------------------------------------------------------------------------------- /15/15-7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/15-7.tex -------------------------------------------------------------------------------- /15/bitonic-euclidean.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/bitonic-euclidean.scm -------------------------------------------------------------------------------- /15/chapter.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/chapter.scm -------------------------------------------------------------------------------- /15/edit-distance.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/edit-distance.scm -------------------------------------------------------------------------------- /15/print-neatly.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/print-neatly.scm -------------------------------------------------------------------------------- /15/scheduling.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/scheduling.scm -------------------------------------------------------------------------------- /15/viterbi.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/15/viterbi.scm -------------------------------------------------------------------------------- /16.1/16.1-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.1/16.1-1.scm -------------------------------------------------------------------------------- /16.1/16.1-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.1/16.1-2.scm -------------------------------------------------------------------------------- /16.1/16.1-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.1/16.1-3.scm -------------------------------------------------------------------------------- /16.1/16.1-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.1/16.1-4.txt -------------------------------------------------------------------------------- /16.1/activity.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.1/activity.scm -------------------------------------------------------------------------------- /16.1/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.1/section.scm -------------------------------------------------------------------------------- /16.2/16.2-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.2/16.2-1.pdf -------------------------------------------------------------------------------- /16.2/16.2-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.2/16.2-1.tex -------------------------------------------------------------------------------- /16.2/16.2-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.2/16.2-2.scm -------------------------------------------------------------------------------- /16.2/16.2-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.2/16.2-3.scm -------------------------------------------------------------------------------- /16.2/16.2-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.2/16.2-4.scm -------------------------------------------------------------------------------- /16.2/16.2-5.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.2/16.2-5.scm -------------------------------------------------------------------------------- /16.2/16.2-7.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.2/16.2-7.scm -------------------------------------------------------------------------------- /16.2/gas.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.2/gas.scm -------------------------------------------------------------------------------- /16.2/knapsack.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.2/knapsack.scm -------------------------------------------------------------------------------- /16.2/payoff.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.2/payoff.scm -------------------------------------------------------------------------------- /16.2/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.2/section.scm -------------------------------------------------------------------------------- /16.2/units.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.2/units.scm -------------------------------------------------------------------------------- /16.3/16.3-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.3/16.3-1.txt -------------------------------------------------------------------------------- /16.3/16.3-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.3/16.3-2.scm -------------------------------------------------------------------------------- /16.3/16.3-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.3/16.3-3.txt -------------------------------------------------------------------------------- /16.3/16.3-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.3/16.3-4.pdf -------------------------------------------------------------------------------- /16.3/16.3-4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.3/16.3-4.tex -------------------------------------------------------------------------------- /16.3/16.3-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.3/16.3-5.txt -------------------------------------------------------------------------------- /16.3/16.3-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.3/16.3-6.txt -------------------------------------------------------------------------------- /16.3/16.3-7.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.3/16.3-7.scm -------------------------------------------------------------------------------- /16.3/figure-16.5.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.3/figure-16.5.scm -------------------------------------------------------------------------------- /16.3/figure-6.3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.3/figure-6.3.scm -------------------------------------------------------------------------------- /16.3/huffman.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.3/huffman.scm -------------------------------------------------------------------------------- /16.3/priority-queue.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.3/priority-queue.scm -------------------------------------------------------------------------------- /16.3/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16.3/section.scm -------------------------------------------------------------------------------- /16/16-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16/16-1.scm -------------------------------------------------------------------------------- /16/16-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16/16-2.scm -------------------------------------------------------------------------------- /16/change.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16/change.scm -------------------------------------------------------------------------------- /16/chapter.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16/chapter.scm -------------------------------------------------------------------------------- /16/schedule.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/16/schedule.scm -------------------------------------------------------------------------------- /17.1/17.1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/17.1/17.1-1.txt -------------------------------------------------------------------------------- /17.1/17.1-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/17.1/17.1-2.txt -------------------------------------------------------------------------------- /17.1/17.1-3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/17.1/17.1-3.pdf -------------------------------------------------------------------------------- /17.1/17.1-3.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/17.1/17.1-3.tex -------------------------------------------------------------------------------- /17.2/17.2-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/17.2/17.2-1.txt -------------------------------------------------------------------------------- /17.2/17.2-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/17.2/17.2-2.txt -------------------------------------------------------------------------------- /17.2/17.2-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/17.2/17.2-3.txt -------------------------------------------------------------------------------- /17.4/17.4-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/17.4/17.4-1.txt -------------------------------------------------------------------------------- /17.4/17.4-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/17.4/17.4-2.txt -------------------------------------------------------------------------------- /17.4/17.4-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/17.4/17.4-3.txt -------------------------------------------------------------------------------- /17/17-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/17/17-1.pdf -------------------------------------------------------------------------------- /17/17-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/17/17-1.tex -------------------------------------------------------------------------------- /17/17-2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/17/17-2.pdf -------------------------------------------------------------------------------- /17/17-2.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/17/17-2.tex -------------------------------------------------------------------------------- /2.1/insertion-sort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/2.1/insertion-sort.scm -------------------------------------------------------------------------------- /2.1/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/2.1/section.scm -------------------------------------------------------------------------------- /2.3/2.3-7.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/2.3/2.3-7.scm -------------------------------------------------------------------------------- /2.3/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/2.3/section.scm -------------------------------------------------------------------------------- /2.3/sum-search.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/2.3/sum-search.scm -------------------------------------------------------------------------------- /2/2-1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/2/2-1.pdf -------------------------------------------------------------------------------- /2/2-1.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/2/2-1.tex -------------------------------------------------------------------------------- /2/2-4.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/2/2-4.pdf -------------------------------------------------------------------------------- /2/2-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/2/2-4.scm -------------------------------------------------------------------------------- /2/2-4.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/2/2-4.tex -------------------------------------------------------------------------------- /2/chapter.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/2/chapter.scm -------------------------------------------------------------------------------- /2/inversions.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/2/inversions.scm -------------------------------------------------------------------------------- /20.2/20.2-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.2/20.2-1.scm -------------------------------------------------------------------------------- /20.2/20.2-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.2/20.2-2.txt -------------------------------------------------------------------------------- /20.2/20.2-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.2/20.2-3.txt -------------------------------------------------------------------------------- /20.2/20.2-4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.2/20.2-4.txt -------------------------------------------------------------------------------- /20.2/20.2-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.2/20.2-5.txt -------------------------------------------------------------------------------- /20.2/TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.2/TODO -------------------------------------------------------------------------------- /20.2/fibonacci-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.2/fibonacci-test.scm -------------------------------------------------------------------------------- /20.2/fibonacci.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.2/fibonacci.scm -------------------------------------------------------------------------------- /20.2/figure-20.3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.2/figure-20.3.scm -------------------------------------------------------------------------------- /20.2/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.2/section.scm -------------------------------------------------------------------------------- /20.3/20.3-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.3/20.3-1.txt -------------------------------------------------------------------------------- /20.3/20.3-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.3/20.3-2.txt -------------------------------------------------------------------------------- /20.3/fibonacci.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.3/fibonacci.scm -------------------------------------------------------------------------------- /20.3/figure-20.4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.3/figure-20.4.scm -------------------------------------------------------------------------------- /20.3/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.3/section.scm -------------------------------------------------------------------------------- /20.4/20.4-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20.4/20.4-1.txt -------------------------------------------------------------------------------- /20/20-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20/20-2.scm -------------------------------------------------------------------------------- /20/chapter.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20/chapter.scm -------------------------------------------------------------------------------- /20/fibonacci.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/20/fibonacci.scm -------------------------------------------------------------------------------- /23.1/23.1-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-1.txt -------------------------------------------------------------------------------- /23.1/23.1-10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-10.txt -------------------------------------------------------------------------------- /23.1/23.1-2.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-2.dot -------------------------------------------------------------------------------- /23.1/23.1-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-2.png -------------------------------------------------------------------------------- /23.1/23.1-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-2.txt -------------------------------------------------------------------------------- /23.1/23.1-3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-3.txt -------------------------------------------------------------------------------- /23.1/23.1-4.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-4.dot -------------------------------------------------------------------------------- /23.1/23.1-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-4.png -------------------------------------------------------------------------------- /23.1/23.1-5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-5.txt -------------------------------------------------------------------------------- /23.1/23.1-6.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-6.dot -------------------------------------------------------------------------------- /23.1/23.1-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-6.png -------------------------------------------------------------------------------- /23.1/23.1-6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-6.txt -------------------------------------------------------------------------------- /23.1/23.1-7.dot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-7.dot -------------------------------------------------------------------------------- /23.1/23.1-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-7.png -------------------------------------------------------------------------------- /23.1/23.1-7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-7.txt -------------------------------------------------------------------------------- /23.1/23.1-8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-8.txt -------------------------------------------------------------------------------- /23.1/23.1-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.1/23.1-9.txt -------------------------------------------------------------------------------- /23.2/figure-23.4-prim.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.2/figure-23.4-prim.scm -------------------------------------------------------------------------------- /23.2/figure-23.4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.2/figure-23.4.scm -------------------------------------------------------------------------------- /23.2/graph.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.2/graph.scm -------------------------------------------------------------------------------- /23.2/kruskal.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.2/kruskal.scm -------------------------------------------------------------------------------- /23.2/prim.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.2/prim.scm -------------------------------------------------------------------------------- /23.2/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.2/section.scm -------------------------------------------------------------------------------- /23.2/set.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/23.2/set.scm -------------------------------------------------------------------------------- /4/4-7.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/4/4-7.pdf -------------------------------------------------------------------------------- /4/4-7.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/4/4-7.tex -------------------------------------------------------------------------------- /5.4/randomize-in-place-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/5.4/randomize-in-place-test.scm -------------------------------------------------------------------------------- /5.4/randomize-in-place.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/5.4/randomize-in-place.scm -------------------------------------------------------------------------------- /5.4/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/5.4/section.scm -------------------------------------------------------------------------------- /5.4/swap-bang.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/5.4/swap-bang.scm -------------------------------------------------------------------------------- /5/5-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/5/5-2.scm -------------------------------------------------------------------------------- /5/chapter.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/5/chapter.scm -------------------------------------------------------------------------------- /5/deterministic-search.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/5/deterministic-search.scm -------------------------------------------------------------------------------- /5/random-search.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/5/random-search.scm -------------------------------------------------------------------------------- /5/scramble-search.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/5/scramble-search.scm -------------------------------------------------------------------------------- /6.2/6.2-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.2/6.2-1.scm -------------------------------------------------------------------------------- /6.2/figure-6.2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.2/figure-6.2.scm -------------------------------------------------------------------------------- /6.2/heap.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.2/heap.scm -------------------------------------------------------------------------------- /6.2/max-heapify.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.2/max-heapify.scm -------------------------------------------------------------------------------- /6.2/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.2/section.scm -------------------------------------------------------------------------------- /6.3/6.3-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.3/6.3-1.scm -------------------------------------------------------------------------------- /6.3/6.3-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.3/6.3-2.txt -------------------------------------------------------------------------------- /6.3/build-max-heap.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.3/build-max-heap.scm -------------------------------------------------------------------------------- /6.3/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.3/section.scm -------------------------------------------------------------------------------- /6.4/6.4-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.4/6.4-1.scm -------------------------------------------------------------------------------- /6.4/heapsort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.4/heapsort.scm -------------------------------------------------------------------------------- /6.4/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.4/section.scm -------------------------------------------------------------------------------- /6.5/6.5-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.5/6.5-1.scm -------------------------------------------------------------------------------- /6.5/6.5-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.5/6.5-2.scm -------------------------------------------------------------------------------- /6.5/6.5-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.5/6.5-3.scm -------------------------------------------------------------------------------- /6.5/6.5-7.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.5/6.5-7.scm -------------------------------------------------------------------------------- /6.5/6.5-8.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.5/6.5-8.scm -------------------------------------------------------------------------------- /6.5/priority-queue.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.5/priority-queue.scm -------------------------------------------------------------------------------- /6.5/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6.5/section.scm -------------------------------------------------------------------------------- /6/6-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6/6-1.scm -------------------------------------------------------------------------------- /6/6-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6/6-2.scm -------------------------------------------------------------------------------- /6/6-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6/6-3.scm -------------------------------------------------------------------------------- /6/build-max-heap-prime.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6/build-max-heap-prime.scm -------------------------------------------------------------------------------- /6/chapter.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6/chapter.scm -------------------------------------------------------------------------------- /6/heap-extract-max-dary.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6/heap-extract-max-dary.scm -------------------------------------------------------------------------------- /6/young-tableau.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/6/young-tableau.scm -------------------------------------------------------------------------------- /7.1/7.1-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7.1/7.1-1.scm -------------------------------------------------------------------------------- /7.1/7.1-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7.1/7.1-2.scm -------------------------------------------------------------------------------- /7.1/7.1-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7.1/7.1-4.scm -------------------------------------------------------------------------------- /7.1/quicksort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7.1/quicksort.scm -------------------------------------------------------------------------------- /7.1/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7.1/section.scm -------------------------------------------------------------------------------- /7.3/7.3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7.3/7.3.scm -------------------------------------------------------------------------------- /7.3/randomized-quicksort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7.3/randomized-quicksort.scm -------------------------------------------------------------------------------- /7.3/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7.3/section.scm -------------------------------------------------------------------------------- /7.4/7.4-5.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7.4/7.4-5.scm -------------------------------------------------------------------------------- /7.4/insertion-quicksort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7.4/insertion-quicksort.scm -------------------------------------------------------------------------------- /7.4/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7.4/section.scm -------------------------------------------------------------------------------- /7/7-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7/7-1.scm -------------------------------------------------------------------------------- /7/7-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7/7-3.scm -------------------------------------------------------------------------------- /7/7-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7/7-4.scm -------------------------------------------------------------------------------- /7/7-5.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7/7-5.scm -------------------------------------------------------------------------------- /7/7-6.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7/7-6.scm -------------------------------------------------------------------------------- /7/chapter.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7/chapter.scm -------------------------------------------------------------------------------- /7/fuzzy-sort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7/fuzzy-sort.scm -------------------------------------------------------------------------------- /7/hoare-quicksort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7/hoare-quicksort.scm -------------------------------------------------------------------------------- /7/median-of-three-quicksort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7/median-of-three-quicksort.scm -------------------------------------------------------------------------------- /7/stooge-sort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7/stooge-sort.scm -------------------------------------------------------------------------------- /7/tail-quicksort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/7/tail-quicksort.scm -------------------------------------------------------------------------------- /8.2/8.2-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8.2/8.2-1.scm -------------------------------------------------------------------------------- /8.2/8.2-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8.2/8.2-2.txt -------------------------------------------------------------------------------- /8.2/8.2-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8.2/8.2-3.scm -------------------------------------------------------------------------------- /8.2/8.2-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8.2/8.2-4.scm -------------------------------------------------------------------------------- /8.2/counting-sort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8.2/counting-sort.scm -------------------------------------------------------------------------------- /8.2/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8.2/section.scm -------------------------------------------------------------------------------- /8.3/8.3-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8.3/8.3-1.scm -------------------------------------------------------------------------------- /8.3/figure-8.3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8.3/figure-8.3.scm -------------------------------------------------------------------------------- /8.3/radix-sort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8.3/radix-sort.scm -------------------------------------------------------------------------------- /8.3/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8.3/section.scm -------------------------------------------------------------------------------- /8.4/8.4-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8.4/8.4-1.scm -------------------------------------------------------------------------------- /8.4/8.4-2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8.4/8.4-2.txt -------------------------------------------------------------------------------- /8.4/bucket-sort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8.4/bucket-sort.scm -------------------------------------------------------------------------------- /8.4/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8.4/section.scm -------------------------------------------------------------------------------- /8/8-2.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8/8-2.scm -------------------------------------------------------------------------------- /8/8-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8/8-3.scm -------------------------------------------------------------------------------- /8/8-4.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8/8-4.scm -------------------------------------------------------------------------------- /8/8-5.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8/8-5.scm -------------------------------------------------------------------------------- /8/chapter.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8/chapter.scm -------------------------------------------------------------------------------- /8/counting-sort-bang.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8/counting-sort-bang.scm -------------------------------------------------------------------------------- /8/jugs.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8/jugs.scm -------------------------------------------------------------------------------- /8/k-sort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8/k-sort.scm -------------------------------------------------------------------------------- /8/radix-sort-cardinality.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/8/radix-sort-cardinality.scm -------------------------------------------------------------------------------- /9.1/9-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.1/9-1.scm -------------------------------------------------------------------------------- /9.1/min-max-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.1/min-max-test.scm -------------------------------------------------------------------------------- /9.1/min-max.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.1/min-max.scm -------------------------------------------------------------------------------- /9.1/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.1/section.scm -------------------------------------------------------------------------------- /9.1/tournament-min.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.1/tournament-min.scm -------------------------------------------------------------------------------- /9.2/9.2-1.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.2/9.2-1.scm -------------------------------------------------------------------------------- /9.2/9.2-2.txt: -------------------------------------------------------------------------------- 1 | Upper and lower subarrays are orthogonal. 2 | -------------------------------------------------------------------------------- /9.2/9.2-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.2/9.2-3.scm -------------------------------------------------------------------------------- /9.2/9.2-4.txt: -------------------------------------------------------------------------------- 1 | Pivot on 9, 8, ... 1. 2 | -------------------------------------------------------------------------------- /9.2/randomized-select.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.2/randomized-select.scm -------------------------------------------------------------------------------- /9.2/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.2/section.scm -------------------------------------------------------------------------------- /9.3/9.3-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.3/9.3-1.txt -------------------------------------------------------------------------------- /9.3/9.3-3.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.3/9.3-3.scm -------------------------------------------------------------------------------- /9.3/9.3-5.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.3/9.3-5.scm -------------------------------------------------------------------------------- /9.3/9.3-6.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.3/9.3-6.scm -------------------------------------------------------------------------------- /9.3/9.3-7.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.3/9.3-7.scm -------------------------------------------------------------------------------- /9.3/9.3-8.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.3/9.3-8.scm -------------------------------------------------------------------------------- /9.3/9.3-9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.3/9.3-9.txt -------------------------------------------------------------------------------- /9.3/balanced-quicksort.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.3/balanced-quicksort.scm -------------------------------------------------------------------------------- /9.3/quantiles.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.3/quantiles.scm -------------------------------------------------------------------------------- /9.3/section.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.3/section.scm -------------------------------------------------------------------------------- /9.3/select-test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.3/select-test.scm -------------------------------------------------------------------------------- /9.3/select.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9.3/select.scm -------------------------------------------------------------------------------- /9/9-1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9/9-1.txt -------------------------------------------------------------------------------- /9/9-2a.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9/9-2a.txt -------------------------------------------------------------------------------- /9/9-2b.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9/9-2b.scm -------------------------------------------------------------------------------- /9/9-2c.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9/9-2c.scm -------------------------------------------------------------------------------- /9/9-2e.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9/9-2e.scm -------------------------------------------------------------------------------- /9/chapter.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9/chapter.scm -------------------------------------------------------------------------------- /9/weighted-median.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/9/weighted-median.scm -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/TODO -------------------------------------------------------------------------------- /notes.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/notes.org -------------------------------------------------------------------------------- /srfi/srfi-70-impl.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/srfi/srfi-70-impl.scm -------------------------------------------------------------------------------- /srfi/srfi-70.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/srfi/srfi-70.scm -------------------------------------------------------------------------------- /util/debug.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/util/debug.scm -------------------------------------------------------------------------------- /util/string.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/util/string.scm -------------------------------------------------------------------------------- /util/test.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/util/test.scm -------------------------------------------------------------------------------- /util/util.scm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/klutometis/clrs/HEAD/util/util.scm --------------------------------------------------------------------------------