|
|
|
|
|
by deathanatos
2852 days ago
|
|
"quickselect" is a selection algorithm that uses a partial quicksort in order to do a select. You're essentially saying to write quicksort using quicksort. Quickselect requires a pivot choosing strategy; the problem is not only the same as quicksort's, it is the problem from quicksort. According to Wikipedia, in the worst case, it is O(n²).[1] But that's not strictly correct, IMO. Regardless, it doesn't answer the OP's question of "is there a selection algorithm that operates in worst case O(n)" [1]: https://en.wikipedia.org/wiki/Quickselect [2]: https://news.ycombinator.com/item?id=17888755 and the parent comment; specifically, the median-of-medians algorithm is a worst-case O(n) selection algorithm. |
|