Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

As per question title, if the array is of an odd length and the array elements are numbered 1 - 10.

Example,

3 6 8 1 3 7 7 9 4 1

I was thinking of using heapsort? Since it is an array, merge sort and insertion sort requires shifting, and would not be so efficient.

share|improve this question
2  
just go through all popular sort-algorithms and check which one fits best for you: en.wikipedia.org/wiki/Sorting_algorithm – thomas Sep 29 '11 at 9:10

4 Answers

up vote 16 down vote accepted

the array elements are number from 1 - 10.

With this restriction, counting sort will be far more efficient than any general purpose sorting algorithm - it's O(n)

share|improve this answer

This is my counting sort example

static int[] countingSort(int[] numbers) {
    int max = numbers[0];
    for (int i = 1; i < numbers.length; i++) {
        if (numbers[i] > max)
            max = numbers[i];
    }

    int[] sortedNumbers = new int[max+1];

    for (int i = 0; i < numbers.length; i++) {
        sortedNumbers[numbers[i]]++;
    }

    int insertPosition = 0;

    for (int i = 0; i <= max; i++) {
            for (int j = 0; j < sortedNumbers[i]; j++) {
                    numbers[insertPosition] = i;
                    insertPosition++;
            }
    }
    return numbers;
}
share|improve this answer

If there are only 10 elements it isn't worth your while to even worry about it. If there are a million it might start to become significant.

share|improve this answer
He didn't specify the length of the array - just the range of values in it. – Nick Johnson Sep 30 '11 at 3:07
@Nick Johnson 'The array elements are numbered 1-10', and his example contains ten elements. – EJP Feb 23 at 1:25

def sort(arr)
      for j in 0..(arr.length-2)
           for i in 0..(arr.length-2)
                if arr[i] > arr[i+1]
                   a = arr[i]
                   arr[i] = arr[i+1]
                   arr[i+1] = a
                end
          end
     end
     return arr
end

This is my algorithm for sorting array with the easiest way.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.