Leetcode-insertion Sort List

Source: Internet
Author: User

Sort a linked list using insertion sort.

This topic examines LinkedList's knowledge points and the basic concepts of insertion sort. The online approach is to build a dummy node to do the front nodes, each time take unsorted list inside a node, record the next hop position, and then insert this point into the sorted list corresponding position. The Insert Sort method is equivalent to removing the head node from the original list each time, and inserting the head node into the new list in the corresponding position. The new list is all made up of the original nodes, but the order is changed /**

* Definition for singly-linked list. * public class ListNode {* int val; * ListNode Next; * ListNode (int X) {* val = x; * next = NULL; *} *}*/ Public classSolution { PublicListNode insertionsortlist (ListNode head) {ListNode dummy=NewListNode (-1);  while(Head! =NULL) {listnode node=dummy;  while(Node.next! =NULL&& Node.next.val <head.val) {Node=Node.next; }
ListNode Temp=Head.next; Head.next=Node.next; Node.next=Head; Head=temp; } returnDummy.next; }}

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.