From d1b2a66f3246ff6b2d1f22a7b3757345ef429346 Mon Sep 17 00:00:00 2001 From: Andrew Date: Thu, 18 Mar 2021 17:13:43 +0400 Subject: =?UTF-8?q?=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=B8=D0=BB=20=D0=BC?= =?UTF-8?q?=D0=B0=D1=82=D0=B5=D1=80=D0=B8=D0=B0=D0=BB=D1=8B=20=D0=BF=D0=BE?= =?UTF-8?q?=20=D0=B1=D0=B8=D0=BD=D0=B0=D1=80=D0=BD=D1=8B=D0=BC=20=D0=B4?= =?UTF-8?q?=D0=B5=D1=80=D0=B5=D0=B2=D1=8C=D1=8F=D0=BC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- bin-trees/Makefile | 33 +++++++++++++++++++++++++++++++++ bin-trees/zadachitree.pdf | Bin 0 -> 30720 bytes theory/teoryRBT1.pdf | Bin 0 -> 295236 bytes theory/teorytree.pdf | Bin 0 -> 272948 bytes 4 files changed, 33 insertions(+) create mode 100644 bin-trees/Makefile create mode 100644 bin-trees/zadachitree.pdf create mode 100644 theory/teoryRBT1.pdf create mode 100644 theory/teorytree.pdf 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 Binary files /dev/null and b/bin-trees/zadachitree.pdf differ diff --git a/theory/teoryRBT1.pdf b/theory/teoryRBT1.pdf new file mode 100644 index 0000000..33d9977 Binary files /dev/null and b/theory/teoryRBT1.pdf differ diff --git a/theory/teorytree.pdf b/theory/teorytree.pdf new file mode 100644 index 0000000..f5d93ff Binary files /dev/null and b/theory/teorytree.pdf differ -- cgit v1.2.3