I want to sort a string "computer" -> "cemoprtu", but without using Arrays.sort(string).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Looks like you need to sort the characters, so I'd start with
|
|||
|
|
|
Check out different sorting algorithms and implement a couple, try bubble then quick sort. |
|||||
|