-
Notifications
You must be signed in to change notification settings - Fork 13.2k
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
Implement split_off for BTreeMap and BTreeSet (RFC 509) #33947
Conversation
Thanks for the pull request, and welcome! The Rust team is excited to review your changes, and you should hear from @gankro (or someone else) soon. If any changes to this PR are deemed necessary, please add them as extra commits. This ensures that the reviewer can see what has changed since they last reviewed the code. Due to the way GitHub handles out-of-date commits, this should also make it reasonably obvious what issues have or haven't been addressed. Large or tricky changes may require several passes of review and changes. Please see the contribution instructions for more information. |
|
||
// Source and destination must have the same height. | ||
unsafe fn move_edges<K, V>( | ||
source: Option<*mut BoxedNode<K, V>>, source_offset: usize, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think I'd prefer if this function took pointers not wrapped in Option
- it makes more sense intuitively to me that you would check if you have edges to move, and if so, you call move_edges
. I could be convinced otherwise though.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In fact, it might be even nicer to just take a NodeRef
- it is easy to figure out where to place the edges.
Oh no. This is bad commit. |
@gereeter, fixed |
|
||
split_edge.cut_to_right(&mut right_node); | ||
|
||
match split_edge.force() { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might be slightly nicer as a match on (split_edge.force(), right_node.force())
.
Sans nits, this looks good to me. Thank you, @xosmig! |
r? @aturon |
@gereeter, Thanks for review! |
should I squash it all into one commit? |
@bors: delegate=gereeter |
✌️ @gereeter can now approve this pull request |
Yes, I think that squashed PRs are standard practice, at least for collections changes like this that don't really have separate, logical steps. |
The Travis failure looks completely unrelated to this PR. @bors r+ |
📌 Commit e3adad6 has been approved by |
/// ``` | ||
#[unstable(feature = "btree_split_off", | ||
reason = "recently added as part of collections reform 2", | ||
issue = "19986")] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Since the corresponding issue was closed, I think a new tracking issue is needed for {BTreeMap, BTreeSet}::{append, split_off}
.
Fixes #19986 and refactors common with append methods.
It splits the tree with O(log n) operations and then calculates sizes by traversing the lower one.
CC @gereeter