Class RadixSort


public class RadixSort extends SortingAlgorithm
Radix sort is a non-comparative integer sorting algorithm that sorts data with integer keys by grouping keys by the individual digits which share the same significant position and value.
Author:
Ignat Gabriel-Andrei
  • Constructor Details

    • RadixSort

      public RadixSort()
  • Method Details

    • sort

      public void sort(int[] arr)
      Description copied from class: SortingAlgorithm
      Sorts an array of integers.
      Specified by:
      sort in class SortingAlgorithm
      Parameters:
      arr - the array to be sorted.