-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Add "nth_element" function for [T] #1470
Comments
👍. Maybe |
I would specify the operation instead of the algorithm. (why quickselect instead of other selection algorithms? I would try to avoid locking into a specific one, so that we can decide based on benchmarks and possibly change our choice). Also notice that usually a selection algorithm does not sort the head nor the tail of the array. In most cases it only guarantees that they are respectively <= and >= of the selected element. We might also want a |
Right, the name shouldn't expose the machinery behind it (this is the same reason @ranma42 |
I thought that was the operation that was proposed by@Mokosha, because
This is also (not coincidentally ;) ) what quickselect does. @ticki What is the operation you have in mind? |
Yes, I'm proposing a full reshuffle of the vector such that all elements after Also, I wasn't suggesting we use quickselect, just that that's a choice. The interface is more important. |
Any use cases that suggest why this should be in |
Spatial data structures use this functionality a lot when partitioning sets along a coordinate axis. I'm not sure where the line is for usefulness w.r.t. adding it to |
This function partially sorts a mutable slice such that the values in the bottom half of the array are less than the values in the top half of the array. The definition of "less than" is determined by the function passed to partition_by. This function is useful in building BVH trees, and should be replaced with rust-lang/rfcs#1470 if it matures into the stdlib.
Any progress on this? I've found myself needing an Regardless of whether it's on topic for |
@IGI-111 I would suggest opening a PR on |
You're free to copy/paste my implementation ( |
FYI: there exist some crates from crates.io for this: kth, pdqselect, order-stat (just in case others end up at this issue while searching). |
Closing this issue since it was opened on the rust issue tracker. |
Apologies if this has been brought up before -- a cursory search with google brought up nothing.
Analogous to the
std::nth_element
function in C++, Rust slices should be able to do a partial quicksort to just get to the nth smallest element. I believe that this is fairly straightforward and analogous to the C++ implementation, and people have already mentioned it a few times. I suspect the function signatures would look something like this:I think the name
nth_element
is a bit clunky though, so perhapssort_at_element
would be better? In particular, I've linked the paper used in most C++ implementations for theintrosort
algorithm.The text was updated successfully, but these errors were encountered: