Y
Hacker News
new
|
ask
|
show
|
jobs
by
KMag
2074 days ago
Isn't that expected (within a constant factor of optimal depth, a.k.a. O(log N) tree height)? They're essentially building a treap, minus the in-order traversal of keys restriction.
[0]
https://en.wikipedia.org/wiki/Treap
1 comments
eutectic
2074 days ago
Optimal depth for union-find is O(1); every node points directly to the root. It's a very different case than building a binary search tree.
link