Python反转链表
阅读原文时间:2023年07月09日阅读:1

# -*- coding:utf-8 -*-

class ListNode:

def __init__(self, x):

self.val = x

self.next = None

class Solution:

def ReverseList(self, pHead):  
    if pHead is None:  
        return  
    last=None  
    while pHead is not None:  
        tmp=pHead.next  
        pHead.next=last  
        last=pHead  
        pHead=tmp

    return last

手机扫一扫

移动阅读更方便

阿里云服务器
腾讯云服务器
七牛云服务器

你可能感兴趣的文章