-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathapp-a.tex
85 lines (76 loc) · 1.93 KB
/
app-a.tex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
\appendix
\chapter{Код на языке Haskell}
\label{app:A}
\lstset{language=Haskell}
\section{Очереди}
\input{haskell/Queue.lhs}
\codesep
\input{haskell/BatchedQueue.lhs}
\codesep
\input{haskell/BankersQueue.lhs}
\codesep
\input{haskell/PhysicistsQueue.lhs}
\codesep
\input{haskell/HoodMelvilleQueue.lhs}
\codesep
\input{haskell/BootstrappedQueue.lhs}
\codesep
\input{haskell/ImplicitQueue.lhs}
\section{Двусторонние очереди}
\input{haskell/Deque.lhs}
\codesep
\input{haskell/BankersDeque.lhs}
\section{Списки с конкатенацией}
\input{haskell/CatenableList.lhs}
\codesep
\input{haskell/CatList.lhs}
\section{Двусторонние очереди с конкатенацией}
\input{haskell/CatenableDeque.lhs}
\codesep
\input{haskell/SimpleCatenableDeque.lhs}
\codesep
\input{haskell/ImplicitCatenableDeque.lhs}
\section{Списки с произвольным доступом}
\input{haskell/RandomAccessList.lhs}
\codesep
\input{haskell/BinaryRandomAccessList.lhs}
\codesep
\input{haskell/SkewBinaryRandomAccessList.lhs}
\codesep
\input{haskell/AltBinaryRandomAccessList.lhs}
\section{Кучи}
\input{haskell/Heap.lhs}
\codesep
\input{haskell/LeftistHeap.lhs}
\codesep
\input{haskell/BinomialHeap.lhs}
\codesep
\input{haskell/SplayHeap.lhs}
\codesep
\input{haskell/PairingHeap.lhs}
\codesep
\input{haskell/LazyPairingHeap.lhs}
\codesep
\input{haskell/SkewBinomialHeap.lhs}
\codesep
\input{haskell/BootstrapHeap.lhs}
\section{Сортируемые коллекции}
\input{haskell/Sortable.lhs}
\codesep
\input{haskell/BottomUpMergeSort.lhs}
\section{Множества}
\input{haskell/Set.lhs}
\codesep
\input{haskell/UnbalancedSet.lhs}
\codesep
\input{haskell/RedBlackSet.lhs}
\section{Конечные отображения}
\input{haskell/FiniteMap.lhs}
\codesep
\input{haskell/Trie.lhs}
\codesep
\input{haskell/TrieOfTrees.lhs}
%%% Local Variables:
%%% mode: latex
%%% TeX-master: "pfds"
%%% End: