reverse_list
reverse_list.cpp 源码
//
// Created by roseduan on 2021/9/18.
// 反转单链表
struct ListNode {
int val;
ListNode *next;
ListNode() : val(0), next(nullptr) {}
ListNode(int x) : val(x), next(nullptr) {}
ListNode(int x, ListNode *next) : val(x), next(next) {}
};
class Solution {
public:
// 反转单链表
ListNode* reverseList(ListNode* head) {
ListNode *prev = nullptr;
while (head != nullptr) {
ListNode *next = head->next;
head->next = prev;
prev = head;
head = next;
}
return prev;
}
};
你可能感兴趣的文章
0
赞
热门推荐
-
2、 - 优质文章
-
3、 gate.io
-
8、 golang
-
9、 openharmony
-
10、 Vue中input框自动聚焦