Home


Lesson 4

Data structures, templates lambdas

Task 0

Try to put parameter for both "val" and "transform" in "node".

Task 1

Create proper destructor for "node".

Task 2

Display list reversed.

Task 3

Create method delete(Type), that deletes all nodes with specific "val".

Task 4

Rewrite node's use case using std::vector.

Task 5

Understand what is binary tree: https://www.cs.usfca.edu/~galles/visualization/BST.html

Task 6

Implement all methods available in previous task.