LoginSignup
0
0

More than 3 years have passed since last update.

Leetcode #147: Insertion Sort List

Posted at
func insertionSortList(_ head: ListNode?) -> ListNode? {
    if head == nil {
        return nil
    }
    let dummyHead = ListNode(0)
    dummyHead.next = head
    var nextNode = head?.next
    head?.next = nil
    while nextNode != nil {
        let tmp = nextNode
        nextNode = nextNode?.next
        var pre = dummyHead
        while pre.next != nil && pre.next!.val < tmp!.val {
            if let node = pre.next {
                pre = node
            } else {
                break
            }
        }
        let node = pre.next
        pre.next = tmp
        pre.next?.next = node

    }
    return dummyHead.next
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0