leetcode 147.对链表进行插入排序

1.题目要求:

c 复制代码
给定单个链表的头 head ,使用 插入排序 对链表进行排序,并返回 排序后链表的头 。

插入排序 算法的步骤:

插入排序是迭代的,每次只移动一个元素,直到所有元素可以形成一个有序的输出列表。
每次迭代中,插入排序只从输入数据中移除一个待排序的元素,找到它在序列中适当的位置,并将其插入。
重复直到所有输入数据插入完为止。
下面是插入排序算法的一个图形示例。部分排序的列表(黑色)最初只包含列表中的第一个元素。每次迭代时,从输入数据中删除一个元素(红色),并就地插入已排序的列表中。

对链表进行插入排序。

2.题目代码:

c 复制代码
/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
 //插入排序函数:
 void insert_sort(int* arr,int length){
    for(int i = 1;i < length;i++){
        if(arr[i - 1] > arr[i]){
            int temp = arr[i];
            int j;
            for(j = i - 1;j >= 0&&temp < arr[j];j--){
                arr[j + 1] = arr[j];
            }
            arr[j + 1] = temp;
        }
    }
 }
struct ListNode* insertionSortList(struct ListNode* head) {
    int count = 0;
    struct ListNode* cur = head;
    //查到结点数目
    while(cur){
        count++;
        cur = cur->next;
    }
    //创造数组
    int* number = (int*)malloc(sizeof(int) * count);
    int j = 0;
    cur = head;
    //把链表的节点存入数组中
    while(cur){
        number[j] = cur->val;
        j++;
        cur = cur->next;
    }
    //进行插入排序
    insert_sort(number,j);
    //把排序好的数组存入链表
    cur = head;
    j = 0;
    while(cur){
        cur->val = number[j];
        j++;
        cur = cur->next;
    }
    return head;
}
相关推荐
Lenyiin24 分钟前
02.06、回文链表
数据结构·leetcode·链表
爱摸鱼的孔乙己29 分钟前
【数据结构】链表(leetcode)
c语言·数据结构·c++·链表·csdn
烦躁的大鼻嘎1 小时前
模拟算法实例讲解:从理论到实践的编程之旅
数据结构·c++·算法·leetcode
祁思妙想2 小时前
10.《滑动窗口篇》---②长度最小的子数组(中等)
leetcode·哈希算法
alphaTao3 小时前
LeetCode 每日一题 2024/11/18-2024/11/24
算法·leetcode
kitesxian3 小时前
Leetcode448. 找到所有数组中消失的数字(HOT100)+Leetcode139. 单词拆分(HOT100)
数据结构·算法·leetcode
jiao_mrswang5 小时前
leetcode-18-四数之和
算法·leetcode·职场和发展
薯条不要番茄酱5 小时前
数据结构-8.Java. 七大排序算法(中篇)
java·开发语言·数据结构·后端·算法·排序算法·intellij-idea
王燕龙(大卫)5 小时前
leetcode 数组中第k个最大元素
算法·leetcode
盼海7 小时前
排序算法(五)--归并排序
数据结构·算法·排序算法