Insertion Sort List
Description Difficulty: 1.5/5.0 Description: https://oj.leetcode.com/problems/insertion-sort-list/ Solution class Solution { public: ListNode *insertionSortList(ListNode *head) { ListNode new_head(INT_MIN); new_head.next = head; ListNode * candidate = new_head.next; ListNode * end = &new_head; while(candidate){ if (candidate->val >= end->val){ // should be placed at the...