Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- JungOl
- C++
- MSG
- install opencv-4.4.0 on ubuntu 22.04
- 프로그래밍
- 마리아 DB
- publish
- ubuntu
- ros
- while
- Linux
- 오늘도 우라라 펫 공략
- 기초
- 등차수열
- mysql
- 오늘도 우라라 펫
- 반복문
- 리눅스
- Subscribe
- 그랑사가
- 환경설정
- LeetCode
- 오늘도 우라라 공략
- 토픽
- 우분투
- 데이터 베이스
- topic
- C언어
- mariaDB
- 오늘도 우라라
Archives
- Today
- Total
목록[LeetCode] 206. Reverse Linked List (1)
하루의 쉼터
[LeetCode] 206. Reverse Linked List
Question : Reverse a singly linked list. Exapmle : Input: 1->2->3->4->5->NULL Output: 5->4->3->2->1->NULL Follow up: A linked list can be reversed either iteratively or recursively. Could you implement both? Solution.h #include #include #include struct ListNode { int val; ListNode* next; ListNode() : val(0), next(nullptr) {} ListNode(int x) : val(x), next(nullptr) {} ListNode(int x, ListNode* ne..
Coding Test/LeetCode
2020. 12. 6. 22:07