Day3 LeetCode 206. 反转链表 c&python

206题目:

给你单链表的头节点 head ,请你反转链表,并返回反转后的链表。

示例 1:

输入:head = [1,2,3,4,5]
输出:[5,4,3,2,1]

思路:使用双指针的思想,pre初始化为空,cur是头节点,依次往后移,知道pre是最后一个节点,此时cur为空。

C语言

struct ListNode* reverseList(struct ListNode* head)
{
    typedef struct ListNode ListNode;
    ListNode *cur=head;
    ListNode *pre=NULL;
    while(cur)
    {
        ListNode *temp=cur->next;
        cur->next=pre;
        pre=cur;
        cur=temp;
    }
    return pre;
}

python语言:

# Definition for singly-linked list.
# class ListNode(object):
#     def __init__(self, val=0, next=None):
#         self.val = val
#         self.next = next
class Solution(object):
    def reverseList(self, head):
        """
        :type head: ListNode
        :rtype: ListNode
        """
        cur=head
        pre=None
        while cur:
            temp=cur.next
            cur.next=pre
            pre=cur
            cur=temp
        return pre

注意事项:设置空指针的时候,在C语言中是NULL,在python语言中是None

思路二:采用递归的方法

C语言

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     struct ListNode *next;
 * };
 */
typedef struct ListNode ListNode;

struct ListNode* reversefunction(ListNode* cur,ListNode* pre)
{
    if (cur==NULL)
    {
        return pre;
    }
    else
    {
        ListNode *temp=cur->next;
        cur->next=pre;
        return reversefunction(temp,cur);
    }
}

struct ListNode* reverseList(struct ListNode* head)
{
    return reversefunction(head,NULL);
}

python语言:

# Definition for singly-linked list.
# class ListNode(object):
#     def __init__(self, val=0, next=None):
#         self.val = val
#         self.next = next
class Solution(object):
    def reverseList(self, head):
        """
        :type head: ListNode
        :rtype: ListNode
        """
        return self.reversefunction(head,None)
    def reversefunction(self,cur,pre):
        if cur==None:
            return pre
        temp=cur.next
        cur.next=pre
        return self.reversefunction(temp,cur)

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值