diff options
| author | Andrew <saintruler@gmail.com> | 2021-03-18 17:13:43 +0400 |
|---|---|---|
| committer | Andrew <saintruler@gmail.com> | 2021-03-18 17:13:43 +0400 |
| commit | d1b2a66f3246ff6b2d1f22a7b3757345ef429346 (patch) | |
| tree | 8f8fc70431528fa3af8402164fbe6915b61f9056 | |
| parent | 6a4c782f6a0f0146e8ff08be4f1d211b7f3aa691 (diff) | |
Добавил материалы по бинарным деревьям
| -rw-r--r-- | bin-trees/Makefile | 33 | ||||
| -rw-r--r-- | bin-trees/zadachitree.pdf | bin | 0 -> 30720 bytes | |||
| -rw-r--r-- | theory/teoryRBT1.pdf | bin | 0 -> 295236 bytes | |||
| -rw-r--r-- | theory/teorytree.pdf | bin | 0 -> 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 Binary files differnew file mode 100644 index 0000000..e0882ac --- /dev/null +++ b/bin-trees/zadachitree.pdf diff --git a/theory/teoryRBT1.pdf b/theory/teoryRBT1.pdf Binary files differnew file mode 100644 index 0000000..33d9977 --- /dev/null +++ b/theory/teoryRBT1.pdf diff --git a/theory/teorytree.pdf b/theory/teorytree.pdf Binary files differnew file mode 100644 index 0000000..f5d93ff --- /dev/null +++ b/theory/teorytree.pdf |