示例#1
0
文件: sorter.go 项目: ahh/remedial
func MSort(v *vec.Vector) {
	c := make(chan int)
	go mhelp(v, 0, v.Size()-1, c)
	<-c
}