-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlc206.cpp
66 lines (61 loc) · 1.63 KB
/
lc206.cpp
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
#include <cstdio>
#include <cstdlib>
#include <iostream>
#include <algorithm>
#include <cmath>
/**
* 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)
{
if (head == NULL) //
{
return NULL;
}
ListNode *cur = head;
ListNode *newhead = new ListNode(cur->val);
while (cur->next)
{
cur = cur->next;
ListNode *node = new ListNode(cur->val);
node->next = newhead; //指针指向的是内存里的一块区域,指针本身不是这块东西。指针可以理解成一种特殊的value
newhead = node; //这一行和上一行毫无影响
}
return newhead;
}
};
int main()
{
Solution rlist;
ListNode *list = rlist.reverseList(NULL);
std::cout << list;
return 0;
}
/*
int main()
{
ListNode *head = new ListNode(1); // 创建第一个节点
ListNode *current = head; // 用于追踪链表的当前节点
// 将数组 [2,3,4,5] 的元素添加到链表中
int elements[] = {2, 3, 4, 5};
for (int i = 0; i < 4; ++i)
{
current->next = new ListNode(elements[i]); // 创建新节点并连接到当前节点的next
current = current->next; // 将当前节点更新为新创建的节点
}
Solution rlist;
ListNode * list = rlist.reverseList(head);
std::cout << list ;
return 0;
}
*/