├── .gitignore ├── LAB0 ├── code │ ├── 1.ans │ ├── 1.in │ ├── 2.ans │ ├── 2.in │ ├── 3.ans │ ├── 3.in │ ├── battle.cpp │ ├── check_input.cpp │ ├── input.in │ ├── rand.in │ ├── rand_input.cpp │ ├── solution_1.cpp │ ├── solution_2.cpp │ └── solution_3.cpp └── report │ ├── LAB0.md │ ├── breakpoint.png │ ├── debugging.png │ ├── next.png │ └── start.png ├── LAB1 ├── LAB1.md ├── defect │ ├── 01.cpp │ ├── 01.in │ ├── 02.cpp │ ├── 02.in │ ├── 03.cpp │ ├── 03.in │ ├── 03gen.cpp │ ├── 04.cpp │ ├── 04.in │ ├── 05.cpp │ ├── 05.in │ ├── 06.cpp │ ├── 06.in │ ├── 06gen.cpp │ ├── 07.cpp │ ├── 07.in │ ├── 07gen.cpp │ ├── 08.cpp │ ├── 08.in │ ├── 09.cpp │ ├── 09.in │ ├── 10.cpp │ ├── 10.in │ └── 10gen.cpp └── std.cpp ├── LAB2 ├── LAB2.md ├── README.md ├── check.cpp ├── dataset │ ├── 1.in │ ├── 2.in │ ├── 3.in │ ├── hdu.txt │ └── poj.txt ├── feelings.md ├── framework │ ├── 1.in │ ├── Makefile │ ├── hashtable.cpp │ ├── hashtable.h │ └── main.cpp ├── gen.cpp ├── result.md └── result.txt ├── LAB3 ├── AVL.cpp ├── LAB3.md ├── README.md ├── check.cpp ├── demo.pptx ├── demo │ ├── AVL-check-zag-zig.PNG │ ├── AVL-check-zag.PNG │ ├── AVL-check-zig-zag.PNG │ ├── AVL-check-zig.PNG │ ├── AVL-zag.PNG │ ├── AVL-zig.PNG │ ├── Splay-f-p-1.PNG │ ├── Splay-f-p-2.PNG │ ├── Splay-p-p-1.PNG │ ├── Splay-p-p-2.PNG │ └── Splay-rotate.PNG ├── gen1.cpp ├── gen2.cpp └── splay.cpp ├── LICENSE ├── PA1 ├── code │ ├── filename.cpp │ ├── gift.cpp │ └── graphics.cpp └── report │ ├── filename.md │ └── graphics.md ├── PA2 ├── code │ ├── ans.txt │ ├── build.cpp │ ├── demo.html │ ├── input.txt │ ├── risk.cpp │ └── triangulation.cpp └── report │ ├── build.md │ ├── pa2-1.jpg │ ├── pa2-2.jpg │ ├── risk.md │ └── triangulation.md ├── PA3 ├── code │ ├── check.cpp │ ├── gen.cpp │ ├── inp.in │ ├── kidd.cpp │ ├── match.cpp │ ├── nearest_neighbor.cpp │ └── std.cpp └── report │ ├── kidd.md │ ├── match.md │ ├── match.pptx │ ├── nearest_neighbor.md │ ├── pa3-1.png │ ├── pa3-2.png │ └── pa3-3.png ├── PA4 ├── code │ ├── component.cpp │ ├── game.cpp │ └── melody.cpp └── report │ ├── component.md │ ├── game.md │ └── melody.md └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/.gitignore -------------------------------------------------------------------------------- /LAB0/code/1.ans: -------------------------------------------------------------------------------- 1 | 1 2 | 38 3 | 48 4 | 76 5 | -------------------------------------------------------------------------------- /LAB0/code/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/code/1.in -------------------------------------------------------------------------------- /LAB0/code/2.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/code/2.ans -------------------------------------------------------------------------------- /LAB0/code/2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/code/2.in -------------------------------------------------------------------------------- /LAB0/code/3.ans: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/code/3.ans -------------------------------------------------------------------------------- /LAB0/code/3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/code/3.in -------------------------------------------------------------------------------- /LAB0/code/battle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/code/battle.cpp -------------------------------------------------------------------------------- /LAB0/code/check_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/code/check_input.cpp -------------------------------------------------------------------------------- /LAB0/code/input.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/code/input.in -------------------------------------------------------------------------------- /LAB0/code/rand.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/code/rand.in -------------------------------------------------------------------------------- /LAB0/code/rand_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/code/rand_input.cpp -------------------------------------------------------------------------------- /LAB0/code/solution_1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/code/solution_1.cpp -------------------------------------------------------------------------------- /LAB0/code/solution_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/code/solution_2.cpp -------------------------------------------------------------------------------- /LAB0/code/solution_3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/code/solution_3.cpp -------------------------------------------------------------------------------- /LAB0/report/LAB0.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/report/LAB0.md -------------------------------------------------------------------------------- /LAB0/report/breakpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/report/breakpoint.png -------------------------------------------------------------------------------- /LAB0/report/debugging.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/report/debugging.png -------------------------------------------------------------------------------- /LAB0/report/next.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/report/next.png -------------------------------------------------------------------------------- /LAB0/report/start.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB0/report/start.png -------------------------------------------------------------------------------- /LAB1/LAB1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/LAB1.md -------------------------------------------------------------------------------- /LAB1/defect/01.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/01.cpp -------------------------------------------------------------------------------- /LAB1/defect/01.in: -------------------------------------------------------------------------------- 1 | A 2 | 2 3 | 0 A 4 | 1 A -------------------------------------------------------------------------------- /LAB1/defect/02.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/02.cpp -------------------------------------------------------------------------------- /LAB1/defect/02.in: -------------------------------------------------------------------------------- 1 | A 2 | 2 3 | 0 A 4 | 1 A -------------------------------------------------------------------------------- /LAB1/defect/03.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/03.cpp -------------------------------------------------------------------------------- /LAB1/defect/03.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/03.in -------------------------------------------------------------------------------- /LAB1/defect/03gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/03gen.cpp -------------------------------------------------------------------------------- /LAB1/defect/04.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/04.cpp -------------------------------------------------------------------------------- /LAB1/defect/04.in: -------------------------------------------------------------------------------- 1 | BA 2 | 1 3 | 1 A -------------------------------------------------------------------------------- /LAB1/defect/05.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/05.cpp -------------------------------------------------------------------------------- /LAB1/defect/05.in: -------------------------------------------------------------------------------- 1 | 2 | 1 3 | 0 A -------------------------------------------------------------------------------- /LAB1/defect/06.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/06.cpp -------------------------------------------------------------------------------- /LAB1/defect/06.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/06.in -------------------------------------------------------------------------------- /LAB1/defect/06gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/06gen.cpp -------------------------------------------------------------------------------- /LAB1/defect/07.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/07.cpp -------------------------------------------------------------------------------- /LAB1/defect/07.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/07.in -------------------------------------------------------------------------------- /LAB1/defect/07gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/07gen.cpp -------------------------------------------------------------------------------- /LAB1/defect/08.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/08.cpp -------------------------------------------------------------------------------- /LAB1/defect/08.in: -------------------------------------------------------------------------------- 1 | BBAAB 2 | 1 3 | 3 A -------------------------------------------------------------------------------- /LAB1/defect/09.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/09.cpp -------------------------------------------------------------------------------- /LAB1/defect/09.in: -------------------------------------------------------------------------------- 1 | BAAB 2 | 1 3 | 1 A -------------------------------------------------------------------------------- /LAB1/defect/10.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/10.cpp -------------------------------------------------------------------------------- /LAB1/defect/10.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/10.in -------------------------------------------------------------------------------- /LAB1/defect/10gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/defect/10gen.cpp -------------------------------------------------------------------------------- /LAB1/std.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB1/std.cpp -------------------------------------------------------------------------------- /LAB2/LAB2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/LAB2.md -------------------------------------------------------------------------------- /LAB2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/README.md -------------------------------------------------------------------------------- /LAB2/check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/check.cpp -------------------------------------------------------------------------------- /LAB2/dataset/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/dataset/1.in -------------------------------------------------------------------------------- /LAB2/dataset/2.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/dataset/2.in -------------------------------------------------------------------------------- /LAB2/dataset/3.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/dataset/3.in -------------------------------------------------------------------------------- /LAB2/dataset/hdu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/dataset/hdu.txt -------------------------------------------------------------------------------- /LAB2/dataset/poj.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/dataset/poj.txt -------------------------------------------------------------------------------- /LAB2/feelings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/feelings.md -------------------------------------------------------------------------------- /LAB2/framework/1.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/framework/1.in -------------------------------------------------------------------------------- /LAB2/framework/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/framework/Makefile -------------------------------------------------------------------------------- /LAB2/framework/hashtable.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/framework/hashtable.cpp -------------------------------------------------------------------------------- /LAB2/framework/hashtable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/framework/hashtable.h -------------------------------------------------------------------------------- /LAB2/framework/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/framework/main.cpp -------------------------------------------------------------------------------- /LAB2/gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/gen.cpp -------------------------------------------------------------------------------- /LAB2/result.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/result.md -------------------------------------------------------------------------------- /LAB2/result.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB2/result.txt -------------------------------------------------------------------------------- /LAB3/AVL.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/AVL.cpp -------------------------------------------------------------------------------- /LAB3/LAB3.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/LAB3.md -------------------------------------------------------------------------------- /LAB3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/README.md -------------------------------------------------------------------------------- /LAB3/check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/check.cpp -------------------------------------------------------------------------------- /LAB3/demo.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/demo.pptx -------------------------------------------------------------------------------- /LAB3/demo/AVL-check-zag-zig.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/demo/AVL-check-zag-zig.PNG -------------------------------------------------------------------------------- /LAB3/demo/AVL-check-zag.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/demo/AVL-check-zag.PNG -------------------------------------------------------------------------------- /LAB3/demo/AVL-check-zig-zag.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/demo/AVL-check-zig-zag.PNG -------------------------------------------------------------------------------- /LAB3/demo/AVL-check-zig.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/demo/AVL-check-zig.PNG -------------------------------------------------------------------------------- /LAB3/demo/AVL-zag.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/demo/AVL-zag.PNG -------------------------------------------------------------------------------- /LAB3/demo/AVL-zig.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/demo/AVL-zig.PNG -------------------------------------------------------------------------------- /LAB3/demo/Splay-f-p-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/demo/Splay-f-p-1.PNG -------------------------------------------------------------------------------- /LAB3/demo/Splay-f-p-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/demo/Splay-f-p-2.PNG -------------------------------------------------------------------------------- /LAB3/demo/Splay-p-p-1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/demo/Splay-p-p-1.PNG -------------------------------------------------------------------------------- /LAB3/demo/Splay-p-p-2.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/demo/Splay-p-p-2.PNG -------------------------------------------------------------------------------- /LAB3/demo/Splay-rotate.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/demo/Splay-rotate.PNG -------------------------------------------------------------------------------- /LAB3/gen1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/gen1.cpp -------------------------------------------------------------------------------- /LAB3/gen2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/gen2.cpp -------------------------------------------------------------------------------- /LAB3/splay.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LAB3/splay.cpp -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/LICENSE -------------------------------------------------------------------------------- /PA1/code/filename.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA1/code/filename.cpp -------------------------------------------------------------------------------- /PA1/code/gift.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA1/code/gift.cpp -------------------------------------------------------------------------------- /PA1/code/graphics.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA1/code/graphics.cpp -------------------------------------------------------------------------------- /PA1/report/filename.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA1/report/filename.md -------------------------------------------------------------------------------- /PA1/report/graphics.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA1/report/graphics.md -------------------------------------------------------------------------------- /PA2/code/ans.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA2/code/ans.txt -------------------------------------------------------------------------------- /PA2/code/build.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA2/code/build.cpp -------------------------------------------------------------------------------- /PA2/code/demo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA2/code/demo.html -------------------------------------------------------------------------------- /PA2/code/input.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA2/code/input.txt -------------------------------------------------------------------------------- /PA2/code/risk.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA2/code/risk.cpp -------------------------------------------------------------------------------- /PA2/code/triangulation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA2/code/triangulation.cpp -------------------------------------------------------------------------------- /PA2/report/build.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA2/report/build.md -------------------------------------------------------------------------------- /PA2/report/pa2-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA2/report/pa2-1.jpg -------------------------------------------------------------------------------- /PA2/report/pa2-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA2/report/pa2-2.jpg -------------------------------------------------------------------------------- /PA2/report/risk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA2/report/risk.md -------------------------------------------------------------------------------- /PA2/report/triangulation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA2/report/triangulation.md -------------------------------------------------------------------------------- /PA3/code/check.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA3/code/check.cpp -------------------------------------------------------------------------------- /PA3/code/gen.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA3/code/gen.cpp -------------------------------------------------------------------------------- /PA3/code/inp.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA3/code/inp.in -------------------------------------------------------------------------------- /PA3/code/kidd.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA3/code/kidd.cpp -------------------------------------------------------------------------------- /PA3/code/match.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA3/code/match.cpp -------------------------------------------------------------------------------- /PA3/code/nearest_neighbor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA3/code/nearest_neighbor.cpp -------------------------------------------------------------------------------- /PA3/code/std.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA3/code/std.cpp -------------------------------------------------------------------------------- /PA3/report/kidd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA3/report/kidd.md -------------------------------------------------------------------------------- /PA3/report/match.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA3/report/match.md -------------------------------------------------------------------------------- /PA3/report/match.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA3/report/match.pptx -------------------------------------------------------------------------------- /PA3/report/nearest_neighbor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA3/report/nearest_neighbor.md -------------------------------------------------------------------------------- /PA3/report/pa3-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA3/report/pa3-1.png -------------------------------------------------------------------------------- /PA3/report/pa3-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA3/report/pa3-2.png -------------------------------------------------------------------------------- /PA3/report/pa3-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA3/report/pa3-3.png -------------------------------------------------------------------------------- /PA4/code/component.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA4/code/component.cpp -------------------------------------------------------------------------------- /PA4/code/game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA4/code/game.cpp -------------------------------------------------------------------------------- /PA4/code/melody.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA4/code/melody.cpp -------------------------------------------------------------------------------- /PA4/report/component.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA4/report/component.md -------------------------------------------------------------------------------- /PA4/report/game.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA4/report/game.md -------------------------------------------------------------------------------- /PA4/report/melody.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/PA4/report/melody.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leverimmy/Data-Structures-PAs-and-LABs/HEAD/README.md --------------------------------------------------------------------------------