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

[ENHANCEMENT] Add Radix Sort to Sorts Module #11

Open
brandoniscoding-dev opened this issue Nov 9, 2024 · 0 comments
Open

[ENHANCEMENT] Add Radix Sort to Sorts Module #11

brandoniscoding-dev opened this issue Nov 9, 2024 · 0 comments
Labels
enhancement New feature or request to-do

Comments

@brandoniscoding-dev
Copy link
Member

  • The current Sorts module does not include a non-comparative sorting algorithm like radix sort, which can be highly efficient for large datasets, especially when sorting integers or strings with a fixed length.

  • Implement radix sort to handle sorting of integers or strings by processing each digit (or character) at a time. This can be done using a stable counting sort as the intermediate sorting step.

  • Quicksort and mergesort are efficient general-purpose algorithms, but radix sort could be a great addition for sorting datasets with a fixed range or length, as it can provide better performance under certain conditions.

  • Radix sort should be implemented in a way that ensures its performance advantages are clear for specific use cases. The implementation should also be consistent with the module’s style and structure.

@brandoniscoding-dev brandoniscoding-dev added enhancement New feature or request to-do labels Nov 9, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request to-do
Projects
None yet
Development

No branches or pull requests

1 participant