I'm trying to implement radix sort into my program. Radix sort should take as input 2 parameters, RANGE and BASE. RANGE will be the highest value of integer that will be in the sorting data, and BASE will be an adjustable parameter that effects the efficiency of Radix sort.
Well it sorts when base is 9. I'm just not sure how to implement the base paremeter into my function so that it changes the efficiency of the program but still sort the numbers.