1 Star 1 Fork 0

laodasbch/Leetcode-Complete-Guide

加入 Gitee
与超过 1400万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
147.txt 908 Bytes
一键复制 编辑 原始数据 按行查看 历史
JunB(66哥) 提交于 2020-11-02 22:34 +08:00 . Create 147.txt
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode() : val(0), next(nullptr) {}
* ListNode(int x) : val(x), next(nullptr) {}
* ListNode(int x, ListNode *next) : val(x), next(next) {}
* };
*/
class Solution {
public:
ListNode * insertionSortList(ListNode* head) {
ListNode *dummy=new ListNode();
while(head!=NULL){
ListNode *next=head->next;
head->next=NULL;
ListNode *pre=dummy;
ListNode *cur=dummy->next;
while(cur!=NULL){
if(head->val<cur->val){
break;
}
pre=cur;
cur=cur->next;
}
pre->next=head;
head->next=cur;
head=next;
}
return dummy->next;
}
};
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/laodasbch/Leetcode-Complete-Guide.git
git@gitee.com:laodasbch/Leetcode-Complete-Guide.git
laodasbch
Leetcode-Complete-Guide
Leetcode-Complete-Guide
master

搜索帮助