summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew <saintruler@gmail.com>2021-03-18 17:13:43 +0400
committerAndrew <saintruler@gmail.com>2021-03-18 17:13:43 +0400
commitd1b2a66f3246ff6b2d1f22a7b3757345ef429346 (patch)
tree8f8fc70431528fa3af8402164fbe6915b61f9056
parent6a4c782f6a0f0146e8ff08be4f1d211b7f3aa691 (diff)
Добавил материалы по бинарным деревьям
-rw-r--r--bin-trees/Makefile33
-rw-r--r--bin-trees/zadachitree.pdfbin0 -> 30720 bytes
-rw-r--r--theory/teoryRBT1.pdfbin0 -> 295236 bytes
-rw-r--r--theory/teorytree.pdfbin0 -> 272948 bytes
4 files changed, 33 insertions, 0 deletions
diff --git a/bin-trees/Makefile b/bin-trees/Makefile
new file mode 100644
index 0000000..3e3ce36
--- /dev/null
+++ b/bin-trees/Makefile
@@ -0,0 +1,33 @@
+CXX=g++
+CFLAGS=-g -Wall
+COMPILE=$(CXX) $(CFLAGS)
+
+task17:
+ $(COMPILE) -o task.out task17.cpp
+test17: task17
+ @printf "\n" | ./task.out
+ @printf "Answer: \n"
+
+task18:
+ $(COMPILE) -o task.out task18.cpp
+test18: task18
+ @printf "\n" | ./task.out
+ @printf "Answer: \n"
+
+task19:
+ $(COMPILE) -o task.out task19.cpp
+test19: task19
+ @printf "\n" | ./task.out
+ @printf "Answer: \n"
+
+task14:
+ $(COMPILE) -o task.out task14.cpp
+test14: task14
+ @printf "\n" | ./task.out
+ @printf "Answer: \n"
+
+clean:
+ rm -f task.out *.zip
+
+archive: clean
+ zip archive.zip *.cpp *.h
diff --git a/bin-trees/zadachitree.pdf b/bin-trees/zadachitree.pdf
new file mode 100644
index 0000000..e0882ac
--- /dev/null
+++ b/bin-trees/zadachitree.pdf
Binary files differ
diff --git a/theory/teoryRBT1.pdf b/theory/teoryRBT1.pdf
new file mode 100644
index 0000000..33d9977
--- /dev/null
+++ b/theory/teoryRBT1.pdf
Binary files differ
diff --git a/theory/teorytree.pdf b/theory/teorytree.pdf
new file mode 100644
index 0000000..f5d93ff
--- /dev/null
+++ b/theory/teorytree.pdf
Binary files differ