[Leetcode][JAVA] Insertion Sort List

Sort a linked list using insertion sort.

简单插入排序,先写个插入一个值到链表里的函数,再遍历整个链表,一个一个把值插入新链表中:

 1  public ListNode insertionSortList(ListNode head) {
 2         if(head==null)
 3             return null;
 4         ListNode re = new ListNode(head.val);
 5         ListNode cur = head.next;
 6         while(cur!=null)
 7         {
 8             re = insert(re, cur.val);
 9             cur = cur.next;
10         }
11         return re;
12     }
13
14     public ListNode insert(ListNode head, int v)
15     {
16         ListNode ln = new ListNode(v);
17         ListNode cur = head;
18         ListNode helper = new ListNode(0);
19         helper.next = head;
20         ListNode pre = helper;
21
22         while(cur!=null)
23         {
24             if(v<cur.val)
25             {
26                 pre.next = ln;
27                 ln.next = cur;
28                 return helper.next;
29             }
30             pre = cur;
31             cur = cur.next;
32         }
33         pre.next = ln;
34         ln.next = null;
35         return helper.next;
36     }

递归实现:

 1 public ListNode insertionSortList(ListNode head) {
 2         if(head==null || head.next==null)
 3             return head;
 4         int value = head.val;
 5         return insert(insertionSortList(head.next),value);
 6     }
 7
 8     public ListNode insert(ListNode head, int v)
 9     {
10         ListNode ln = new ListNode(v);
11         ListNode cur = head;
12         ListNode helper = new ListNode(0);
13         helper.next = head;
14         ListNode pre = helper;
15
16         while(cur!=null)
17         {
18             if(v<cur.val)
19             {
20                 pre.next = ln;
21                 ln.next = cur;
22                 return helper.next;
23             }
24             pre = cur;
25             cur = cur.next;
26         }
27         pre.next = ln;
28         ln.next = null;
29         return helper.next;
30     }
时间: 2024-11-15 21:29:38

[Leetcode][JAVA] Insertion Sort List的相关文章

【LeetCode】Insertion Sort List

题目 Sort a linked list using insertion sort. 解答 链表无法像数组那样从后往前依次比较插入,只能从前往后:在链表首部添加一个哨兵可以稍微简化下代码,代码如下: /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { * val = x; * next = null; * } * }

[LeetCode 题解]: Insertion Sort List

Sort a linked list using insertion sort. 题目要求:链表的插入排序,由于没有时间复杂度的要求,可以直接循环操作. /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: ListNode

LeetCode OJ - Insertion Sort List

题目: Sort a linked list using insertion sort. 解题思路: 假设 list[1..i]是排好序的,找到第i+1个元素应该插入的位置及其前驱,然后将其插入. 代码: /** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class S

Java for LeetCode 147 Insertion Sort List

Sort a linked list using insertion sort. 解题思路: 插入排序,JAVA实现如下: public ListNode insertionSortList(ListNode head) { if(head==null||head.next==null) return head; ListNode root=new ListNode(Integer.MIN_VALUE); root.next=head; head=head.next; root.next.nex

Leetcode 147. Insertion Sort List 插入排序 in Java

147. Insertion Sort List Total Accepted: 80869 Total Submissions: 263074 Difficulty: Medium Sort a linked list using insertion sort. /** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { va

leetcode 147. Insertion Sort List (Python版)

题目: Sort a linked list using insertion sort. 大意是要实现一个链表的插入排序 算法思路:     从原链表中逐个弹出一个node 对于每一个node用插入排序的思想插入新的升序排列的链表中 这里有一个小trick,leetcode有一组数据是1~4999的升序序列,如果我们采用如上方法会超时 于是我们在插入排序的时候设置一个last位,记录当前插入的位置 在下一次插入的时候与上次插入位置last比较,如果当前node.val > last.val,那么

leetcode:Insertion Sort List

Sort a linked list using insertion sort. 分析:此题要求在链表上实现插入排序. 思路:插入排序是一种O(n^2)复杂度的算法,基本想法就是每次循环找到一个元素在当前排好的结果中相对应的位置然后插进去,经过n次迭代之后就能得到排好序的结果. 可以这么做:建立一个helper头结点,然后依次将head链表中的结点有序的插入到helper链表中 代码: /** * Definition for singly-linked list. * struct ListN

leetcode - [5]Insertion Sort List

Sort a linked list using insertion sort. 思路:插入排序 #include <iostream> using namespace std; struct ListNode { int val; ListNode *next; ListNode(int x): val(x), next(NULL) {} }; class Solution { public: ListNode *insertionSortList(ListNode *head) { if

[LeetCode] 147. Insertion Sort List 解题思路

Sort a linked list using insertion sort. 问题:实现单向链表的插入排序. 这是比较常规的一个算法题目. 从左往右扫列表,每次将指针的下一个元素插入前面已排好序的对应位置中. 需要注意的一定是,列表只能定位下一个元素,不能定位前一个元素,所有,每次插入位置的适合,都是对左右指针的下一个元素进行操作. 1 void insertSort(ListNode* p1, ListNode* p2){ 2 ListNode* next2 = p2->next; 3 p