Leetcode-206 Reverse Linked List
Posted 北冥有鱼,南冥有猫
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Leetcode-206 Reverse Linked List相关的知识,希望对你有一定的参考价值。
#206. Reverse Linked List
Reverse a singly linked list.
/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(int x) : val(x), next(NULL) {} * }; */ class Solution { public: ListNode* reverseList(ListNode* head) { ListNode* p=NULL; ListNode* q=head; while(q!=NULL) { ListNode *newlist=new ListNode(q->val); newlist->next=p; p=newlist; q=q->next; } return p; } };
以上是关于Leetcode-206 Reverse Linked List的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode 206 Reverse Linked List 链表
LeetCode 206 Reverse Linked List
Leetcode 206: Reverse Linked List
[LeetCode]206. Reverse Linked List