返回介绍

solution / 0100-0199 / 0147.Insertion Sort List / README_EN

发布于 2024-06-17 01:04:04 字数 4570 浏览 0 评论 0 收藏 0

147. Insertion Sort List

中文文档

Description

Given the head of a singly linked list, sort the list using insertion sort, and return _the sorted list's head_.

The steps of the insertion sort algorithm:

  1. Insertion sort iterates, consuming one input element each repetition and growing a sorted output list.
  2. At each iteration, insertion sort removes one element from the input data, finds the location it belongs within the sorted list and inserts it there.
  3. It repeats until no input elements remain.

The following is a graphical example of the insertion sort algorithm. The partially sorted list (black) initially contains only the first element in the list. One element (red) is removed from the input data and inserted in-place into the sorted list with each iteration.

 

Example 1:

Input: head = [4,2,1,3]
Output: [1,2,3,4]

Example 2:

Input: head = [-1,5,3,4,0]
Output: [-1,0,3,4,5]

 

Constraints:

  • The number of nodes in the list is in the range [1, 5000].
  • -5000 <= Node.val <= 5000

Solutions

Solution 1

# Definition for singly-linked list.
# class ListNode:
#   def __init__(self, val=0, next=None):
#     self.val = val
#     self.next = next
class Solution:
  def insertionSortList(self, head: ListNode) -> ListNode:
    if head is None or head.next is None:
      return head
    dummy = ListNode(head.val, head)
    pre, cur = dummy, head
    while cur:
      if pre.val <= cur.val:
        pre, cur = cur, cur.next
        continue
      p = dummy
      while p.next.val <= cur.val:
        p = p.next
      t = cur.next
      cur.next = p.next
      p.next = cur
      pre.next = t
      cur = t
    return dummy.next
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *   int val;
 *   ListNode next;
 *   ListNode() {}
 *   ListNode(int val) { this.val = val; }
 *   ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
  public ListNode insertionSortList(ListNode head) {
    if (head == null || head.next == null) {
      return head;
    }
    ListNode dummy = new ListNode(head.val, head);
    ListNode pre = dummy, cur = head;
    while (cur != null) {
      if (pre.val <= cur.val) {
        pre = cur;
        cur = cur.next;
        continue;
      }
      ListNode p = dummy;
      while (p.next.val <= cur.val) {
        p = p.next;
      }
      ListNode t = cur.next;
      cur.next = p.next;
      p.next = cur;
      pre.next = t;
      cur = t;
    }
    return dummy.next;
  }
}
/**
 * Definition for singly-linked list.
 * function ListNode(val, next) {
 *   this.val = (val===undefined ? 0 : val)
 *   this.next = (next===undefined ? null : next)
 * }
 */
/**
 * @param {ListNode} head
 * @return {ListNode}
 */
var insertionSortList = function (head) {
  if (head == null || head.next == null) return head;
  let dummy = new ListNode(head.val, head);
  let prev = dummy,
    cur = head;
  while (cur != null) {
    if (prev.val <= cur.val) {
      prev = cur;
      cur = cur.next;
      continue;
    }
    let p = dummy;
    while (p.next.val <= cur.val) {
      p = p.next;
    }
    let t = cur.next;
    cur.next = p.next;
    p.next = cur;
    prev.next = t;
    cur = t;
  }
  return dummy.next;
};

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
列表为空,暂无数据
    我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
    原文