Skip to content
Snippets Groups Projects
Commit 60853fef authored by Milan Straka's avatar Milan Straka
Browse files

Explictly state what to submit.

parent 44e8fcb0
No related branches found
No related tags found
No related merge requests found
...@@ -7,4 +7,5 @@ and it should return another node of the tree with the next higher key ...@@ -7,4 +7,5 @@ and it should return another node of the tree with the next higher key
- The given node can also be a null pointer, in which case the method should - The given node can also be a null pointer, in which case the method should
return the smallest node in the tree. return the smallest node in the tree.
You should submit the file `tree_successor.*`. You should submit the file `tree_successor.*` (but not the
`tree_successor_test.*`).
...@@ -2,3 +2,6 @@ Given an implementation of a binary search tree including parent pointers: ...@@ -2,3 +2,6 @@ Given an implementation of a binary search tree including parent pointers:
- implement `splay` method, possibly utilizing the provided `rotate` operation - implement `splay` method, possibly utilizing the provided `rotate` operation
performing a single rotation; performing a single rotation;
- update `lookup`, `insert` and `remove` methods to utilize it correctly. - update `lookup`, `insert` and `remove` methods to utilize it correctly.
You should submit the `splay_operation.*` file (but not the
`splay_operation_test.*`).
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment