Problem Solving/리트코드(leetcode)
[Leetcode/C++] 206. Reverse Linked List
높은곳에영광
2022. 1. 24. 02:15
/**
* Definition for singly-linked list.
* 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;
ListNode *curr = head;
while(head != nullptr) {
curr = curr->next;
head->next = prev;
prev = head;
head = curr;
}
return prev;
}
};
Data Structure 수업을 듣고 링크드 리스트를 제대로 이해했다면 너무나도 쉽게 넘어갈 수 있는 문제였습니다.
문제: https://leetcode.com/problems/reverse-linked-list/
Reverse Linked List - LeetCode
Level up your coding skills and quickly land a job. This is the best place to expand your knowledge and get prepared for your next interview.
leetcode.com