We use cookies to ensure you have the best browsing experience on our website. Please read our cookie policy for more information about how we use cookies.
Median Updates
Median Updates
Sort by
recency
|
188 Discussions
|
Please Login in order to post a comment
Done it with the AVL Tree. Every node of the tree tracks not only height but also size which allows to calculate the index of the node and therefore the median.
` class AVL: def init(self): self.root = None
The rest of the AVL tree implementation you may find on geeksforgeeks.
i got this one
https://ideone.com/YWjB9B
Simple solution
The multi-set solution is O(n) for add and O(n) for remove (thus no better than using a sorted linkedlist). This is a heap based solution that's O(log n) for add but still O(n) for remove.