张小小帅
张小小帅
全部文章
分类
题解(43)
归档
标签
去牛客网
登录
/
注册
张小小帅的博客
全部文章
(共3篇)
题解 | #单链表的排序#
package main import . "nc_tools" //时间nlogn, 空间O1 func sortInList( head *ListNode ) *ListNode { if head == nil || head.Next == nil { ...
Go
分治
2021-09-21
1
428
题解 | #合并k个已排序的链表#
package main import . "nc_tools" //归并排序法,时间: kn*logk 空间:logk func mergeKLists( lists []*ListNode ) *ListNode { // write code here ...
Go
分治
2021-09-21
1
406
题解 | #排序#
package main //堆排 func MySort( arr []int) []int { heapSort(arr) return arr } func heapSort(nums []int ) []int { end := len(nums) -1 ...
Go
快排
堆
分治
2021-09-17
1
330