[Leetcode] insertion sort list

Source: Internet
Author: User

Insertion Sort list

Sort a linked list using insertion sort.

 

This topic is the version of the inserted sorted linked list.

The traditional array version is a two-loop method. The first is to traverse all elements, and the second is to traverse the sorted parts for insertion.

The version of the linked list is similar. When traversing each element, traverse the sorted part for insertion.

 

For the code above, refer to Chapter 9 algorithm solution station.

Class solution {public: listnode * insertionsortlist (listnode * head) {listnode * sortedhead = new listnode (-1); While (Head! = NULL) {// Save the head position listnode * temp = head-> next; listnode * cur = sortedhead; while (cur-> next! = NULL & cur-> next-> Val 

 

[Leetcode] insertion sort list

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.