HackClubRAIT / Wizard-Of-Docs

A open source project to bring all the data structures and algorithms docs under one repository.
MIT License
19 stars 43 forks source link

quickselect algoithm #77

Open nishajha629 opened 3 years ago

nishajha629 commented 3 years ago

Description

Describe more about the issue. Quickselect is a selection algorithm to find the k-th smallest element in an unordered list. It is related to the quick sort sorting algorithm.The difference is, instead of recurring for both sides (after finding pivot), it recurs only for the part that contains the k-th smallest element.

Programming language

Are you contributing under any open-source program ?

hacktoberfest


nishajha629 commented 3 years ago

could you please assign me this issue