2 Star 1 Fork 0

royce li/Leetcode_royce

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
insertionSortList.py 888 Bytes
一键复制 编辑 原始数据 按行查看 历史
Royce Li 提交于 2021-05-10 16:39 . 2020/5/10 First Commit
# Definition for singly-linked list.
# class ListNode:
# def __init__(self, x):
# self.val = x
# self.next = None
class Solution:
def insertionSortList(self, head: ListNode) -> ListNode:
if not head or not head.next:
return head
temphead=ListNode(None)
temphead.next=head
goer=head.next
head.next=None
while goer:
check=temphead
while check.next and goer.val>check.next.val:
check=check.next
temp1=check.next
temp2=goer.next
check.next=goer
goer.next=temp1
goer=temp2
return temphead.next
'''
执行用时:
1664 ms
, 在所有 Python3 提交中击败了
17.25%
的用户
内存消耗:
15.2 MB
, 在所有 Python3 提交中击败了
83.95%
的用户
'''
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/royce-li/leetcode_royce.git
git@gitee.com:royce-li/leetcode_royce.git
royce-li
leetcode_royce
Leetcode_royce
master

搜索帮助