摘要: func sortList(head *ListNode) *ListNode { slist(head,nil) return head } func slist(head *ListNode,tail *ListNode){ if head == nil || head.Next == nil || head == tail{ return } pivot := head.Val i := h 阅读全文
posted @ 2019-09-25 17:15 式微胡不归 阅读(156) 评论(0) 推荐(0) 编辑