Skip to content
Advertisement

How to sort Integer digits in ascending order without Strings or Arrays?

I’m trying to sort the digits of an integer of any length in ascending order without using Strings, arrays or recursion.

Example:

JavaScript

I have already figured out how to get each digit of the integer with modulus division:

JavaScript

but I don’t know how to order the digits without an array.

Don’t worry about the IO class; it’s a custom class our professor gave us.

Advertisement

Answer

There’s actually a very simple algorithm, that uses only integers:

JavaScript

it will print out 1123447. The idea is simple:

  1. you take the current digit of the number you want to sort(let’s call it N)
  2. you go through all digits in already sorted number(let’s call it S)
  3. if current digit in S is less than current digit in N, you just insert the digit in the current position in S. Otherwise, you just go to the next digit in S.

That version of the algorithm can sort in both asc in desc orders, you just have to change the condition.

Also, I suggest you to take a look at so-called Radix Sort, the solution here takes some ideas from radix sort, and I think the radix sort is the general case for that solution.

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