What different sorting algorithms are available in Java 6?

前端 未结 3 2042
清歌不尽
清歌不尽 2021-02-06 05:21

The are several sorting algorithms like inserstion sort, selection sort, bubble sort etc. that are often discussed in computer science textbooks. Given an array of integers or o

3条回答
  •  深忆病人
    2021-02-06 05:58

    Arrays.sort(int[] a) uses a tuned quicksort.

    Arrays.sort[Object[] a) uses a modified mergesort.

提交回复
热议问题