kelvins / algorithms-and-data-structures

:abacus: Algorithms and Data Structures in several Programming Languages
MIT License
1.04k stars 258 forks source link

Add: radix sort in ANSI C #248

Closed andersonhsporto closed 11 months ago

andersonhsporto commented 11 months ago

This commit adds the radix_sort function to process digits from least to most significant, employing buckets for element arrangement. A sample unsorted array is provided and sorted using Radix Sort, with both the original and sorted arrays printed for validation.