示例#1
0
文件: sort.go 项目: lzcqd/sedgewick
func Sort(data sortable.Interface) {
	aux := data.AllocateNew()
	mergeSort(data, aux, 0, data.Len()-1)
}