예제 #1
0
파일: sort.go 프로젝트: lzcqd/sedgewick
func Sort(data sortable.Interface) {
	aux := data.AllocateNew()
	mergeSort(data, aux, 0, data.Len()-1)
}