Skip to content

Latest commit

 

History

History
executable file
·
6 lines (3 loc) · 294 Bytes

File metadata and controls

executable file
·
6 lines (3 loc) · 294 Bytes

147. Insertion Sort List

to i th node, we need to interate head to ith, and insert it to the next > value.

I found that if I do not delete the cycle in the node list (because I do not delete the post->next but I add the next to the place of the sort list, it will TLE (check problem)