algorithms icon indicating copy to clipboard operation
algorithms copied to clipboard

Implement Counting Sort in C

Open sobhanbera opened this issue 2 years ago • 4 comments

Algorithm/Data Structure: Counting Sort Programming Language: C Difficulty: ⭐️⭐️⭐️

Issue Details

Description

Counting Sort is a linear time sorting algorithm that is particularly efficient when the range of input values is small compared to the number of elements to be sorted. It works by counting the frequency of each distinct element in the input data and using that information to place elements in their correct sorted positions.

Additional Information

If you are new to Counting Sort or need guidance on implementing it in C, feel free to ask questions or seek help in the comments. This is a great opportunity for contributors to gain experience in sorting algorithms and algorithmic optimizations in C.

Note: Before starting to work on this issue, please comment below to express your interest and let us know if you have any questions or need clarification on the task.

sobhanbera avatar Oct 01 '23 11:10 sobhanbera

I can implement this. Could you assign it to me? Thanks.

tony-nyagah avatar Oct 01 '23 19:10 tony-nyagah

Hey @tony-nyagah, Assigned the issue to you. You can now start working on this!

sobhanbera avatar Oct 01 '23 20:10 sobhanbera

I submitted a PR with the code. Could you check and approve if it's okay? Thanks.

tony-nyagah avatar Oct 02 '23 05:10 tony-nyagah

Assign this issue to me

Jatingupta9120 avatar Nov 17 '23 13:11 Jatingupta9120