What different sorting algorithms are available in Java 6?

前端 未结 3 2041
清歌不尽
清歌不尽 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:41

    You generally don't get to choose (with the built in sorting, anyway). The Collections class provides a sort method which should be efficient enough for most needs.

提交回复
热议问题