anku580 / Java-Algorithms

This repository contains java algorithms and some interview questions.
11 stars 57 forks source link

Added Radix Sort and Counting Sort #29

Closed canigethellomoto closed 3 years ago

canigethellomoto commented 3 years ago

Radix sort is an integer sorting algorithm that sorts data with integer keys by grouping the keys by individual digits that share the same significant position and value. Counting sort is a sorting technique based on keys between a specific range.