pydatastructs icon indicating copy to clipboard operation
pydatastructs copied to clipboard

Radix Sort

Open asmit27rai opened this issue 9 months ago • 3 comments

Add Radix Sort Algorithm

Description: Radix Sort is a non-comparative sorting algorithm that processes integer numbers by grouping them by individual digits. It sorts numbers digit by digit, starting from the least significant digit (LSD) to the most significant digit (MSD) or vice versa. It uses counting sort as a subroutine to sort the digits.

References:

asmit27rai avatar Mar 08 '25 08:03 asmit27rai

@Kishan-Ved I am working on it. Pls assign this to me...

asmit27rai avatar Mar 08 '25 08:03 asmit27rai

Hi, we don't assign issues to specific people here. If it's important, please feel free to make a PR.

Kishan-Ved avatar Mar 08 '25 09:03 Kishan-Ved

I have added the radix sort algorithm along with its test cases. And all the tests worked successfully. Please check it.

Kushagra9399 avatar Mar 12 '25 14:03 Kushagra9399