题解 | #翻转链表#

翻转链表

https://www.nowcoder.com/practice/f350f14cd22c41aabfa7e54a1b8e8825

import sys


class ListNode:
    def __init__(self,val=0,next=None):
        self.val=val
        self.next=next


def parse_input(slist):
    if not slist:
        return None
    head=ListNode(slist[0])
    curr=head
    for value in slist[1:]:
        curr.next=ListNode(value)
        curr=curr.next
    return head

def reverseList(head):
    if not head or not head.next:
        return head

    slow,fast=head,head
    while fast and fast.next:
        slow=slow.next
        fast=fast.next.next

    prev,curr=None,slow.next
    slow.next=None
    while curr:
        next_tmp=curr.next
        curr.next=prev
        prev=curr
        curr=next_tmp
    
    first,second=head,prev
    while second:
        tmp1,tmp2=first.next,second.next
        first.next=second
        second.next=tmp1
        first,second=tmp1,tmp2
    return head

s=list(map(int,input().strip().split(',')))
# print(s)
head=parse_input(s)
head=reverseList(head)
res=[]
while head:
    res.append(str(head.val))
    head=head.next
print(",".join(res))


    
    



全部评论

相关推荐

KPLACE:首先是板面看起来不够,有很多奖,比我厉害。项目要精减,大概详细描述两到三个,要把技术栈写清楚,分点,什么算法,什么外设,怎么优化,不要写一大堆,分点,你写上去的目的,一是让别人知道你做了这个知识点,然后在面试官技术面的时侯,他知道你会这个,那么就会跟你深挖这个,然后就是个人评价改为专业技能
点赞 评论 收藏
分享
联洲 嵌入式软件开发 总包48w(sp+3档)
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务