Does a “binary sort” algorithm exist?

前端 未结 8 1248
孤独总比滥情好
孤独总比滥情好 2021-01-07 21:59

Is there a sorting algorithm that is named \"binary sort\"? Like merge sort, selection sort, or the other kinds of sorting, does a binary sort exist?

8条回答
  •  长情又很酷
    2021-01-07 22:51

    Heap sort is a sorting algorithm by conceptualizing a binary tree and doing sift-up and then sift-down on it. It can be done in place.

提交回复
热议问题