Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mira #3

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open

Mira #3

wants to merge 3 commits into from

Conversation

calopter
Copy link

Heaps Practice

Congratulations! You're submitting your assignment!

Comprehension Questions

Question Answer
How is a Heap different from a Binary Search Tree? it has looser ordering
Could you build a heap with linked nodes? sure
Why is adding a node to a heap an O(log n) operation? because the heap is a complete binary structure, worst case is heaping a new element to the bottom row, which is the height of the tree number of swaps, which is logn
Were the heap_up & heap_down methods useful? Why? they separate concerns (and recursion) out of the add and remove methods

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants