Skip to content
Advertisement

How do I write a Drake sort algorithm for sorting an array in Java? [closed]

I’m writing a Drake Sort Algorithm in java that will sort a collection of elements. The algorithm is supposed to work like this:

An array for example: { -2, 4, 1, 4 }

  1. Get the max value of the array
  2. Get the min value of the array
  3. Create array with the size (max value – min value + 1) = 7 (4-(-2)+1) = {0,0,0,0,0,0,0}
  4. Go through the array and for each element in the collection count the corresponding index in the array{ 1, 0, 0, 1, 0, 0, 2 }
  5. Create a new array that is the same size as the collection that I wanted to sort (4)
  6. Go trough the array and fill the new collection with the sorted values { -2, 1, 4, 4 }

I’m not very good at writing algorithm and this is what I have so far (not completed I know)

JavaScript

Do you know how I can improve this and actually get it to work?

Advertisement

Answer

The solution may look as follows according to the specified algorithm.

Disclaimer: the array size in Java cannot be greater than maximum size, therefore the length of the frequency array max - min + 1 < Integer.MAX_VALUE

JavaScript

Online demo

JavaScript

Output

JavaScript
User contributions licensed under: CC BY-SA
10 People found this is helpful
Advertisement