Skip to content
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

feat: Add Radix Sort Algorithm #642

Open
wants to merge 4 commits into
base: main
Choose a base branch
from

Conversation

asmit27rai
Copy link

✨ Added Radix Sort Algorithm

📌 Description

This PR introduces the Radix Sort algorithm, a non-comparative sorting technique that processes numbers digit by digit. It utilizes Counting Sort as a subroutine to achieve stable sorting. The sorting process starts from the Least Significant Digit (LSD) and moves towards the Most Significant Digit (MSD).

📖 References

FIXES : #603

Added an implementation of the Radix Sort algorithm. Radix Sort is a non-comparative sorting algorithm that sorts numbers digit by digit, typically using Counting Sort as a subroutine. This implementation sorts numbers starting from the least significant digit (LSD).
Comment on lines 1856 to 1867
"""
Implements Radix Sort.
Parameters
==========
array: Array
The array which is to be sorted.
comp: lambda/function
The comparator which is to be used
for sorting. Optional, by default, less than or
equal to is used for comparing two
values.
"""
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
"""
Implements Radix Sort.
Parameters
==========
array: Array
The array which is to be sorted.
comp: lambda/function
The comparator which is to be used
for sorting. Optional, by default, less than or
equal to is used for comparing two
values.
"""
"""
Implements Radix Sort.
Parameters
==========
array: Array
The array which is to be sorted.
comp: lambda/function
The comparator which is to be used
for sorting. Optional, by default, less than or
equal to is used for comparing two
values.
"""

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@czgdp1807 Done as per requested....

@asmit27rai asmit27rai requested a review from czgdp1807 March 19, 2025 08:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Radix Sort
2 participants