For my RadixSortQuiz, I'm thinking of using recursion for creating sub buckets to compare the next significant digit of the numbers within a shared bucket. However, for my recursive call, how can I set a new beginIndex and endIndex for the specific bucket I'm focusing on?
@MimiOlayeye this is a right direction; how you keep track of the beginIndex of endIndex for each sub-bucket is the key of this assignment; we can discuss about it during the office hours.
For my RadixSortQuiz, I'm thinking of using recursion for creating sub buckets to compare the next significant digit of the numbers within a shared bucket. However, for my recursive call, how can I set a new beginIndex and endIndex for the specific bucket I'm focusing on?
My code: (line 17 is what I'm referring to) https://github.com/MimiOlayeye/dsa-java/blob/master/src/main/java/edu/emory/cs/sort/distribution/RadixSortQuiz.java