Link to home
Start Free TrialLog in
Avatar of sumantedla
sumantedla

asked on

Sort Program

I have to sort an array of doubles, which is of size 4000. Performance is a key issue. Which sorting algorithm is best to do this ?? Already written code is welcomed.
Avatar of Mick Barry
Mick Barry
Flag of Australia image

the simplest is:

Arrays.sort(myarray);
ASKER CERTIFIED SOLUTION
Avatar of Mick Barry
Mick Barry
Flag of Australia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial