Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
assignments
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
datovky
assignments
Commits
60853fef
Commit
60853fef
authored
6 years ago
by
Milan Straka
Browse files
Options
Downloads
Patches
Plain Diff
Explictly state what to submit.
parent
44e8fcb0
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
01-tree_successor/task.md
+2
-1
2 additions, 1 deletion
01-tree_successor/task.md
02-splay_operation/task.md
+3
-0
3 additions, 0 deletions
02-splay_operation/task.md
with
5 additions
and
1 deletion
01-tree_successor/task.md
+
2
−
1
View file @
60853fef
...
@@ -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.*`
).
This diff is collapsed.
Click to expand it.
02-splay_operation/task.md
+
3
−
0
View file @
60853fef
...
@@ -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.*`
).
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment