selection_algorithm (223B)
1 # Selection algorithm 2 3 - [quickselect] 4 - [median_of_medians] 5 - [hybrid_algorithm]: [introselect] 6 - has [linear_time] [worst_case] [time_complexity] 7 - but better [average_complexity] in [practice] 8 9 Up: [algorithms_list]