力扣刷题—链表反转

2021/11/11 23:40:25

本文主要是介绍力扣刷题—链表反转,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

 

法一:反转指针

 

 

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


struct ListNode* reverseList(struct ListNode* head){
if(head==NULL)
return NULL;

struct ListNode*n1=NULL;
struct ListNode*n2=head;
struct ListNode*n3=n2->next;


    while(n2)
    {
        n2->next=n1;
        n1=n2;
        n2=n3;
        if(n3)
        n3=n3->next;
    }
    return n1;


}

 法二:头插法

 

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


struct ListNode* reverseList(struct ListNode* head){
if(head==NULL)
return NULL;
struct ListNode*cur=head;
struct ListNode*newnode=NULL;
struct ListNode*next=cur->next;
while(cur)
{
    cur->next=newnode;
    newnode=cur;
    cur=next;
    if(next)
    next=next->next;

}
return newnode;

}


这篇关于力扣刷题—链表反转的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程