链表基础

链表基础

链表的定义、创建、遍历

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
#include <iostream>

using namespace std;

// 定义
struct ListNode
{
int val{};
ListNode* next;
explicit ListNode(int x = 0) : val(x), next(nullptr) {}
explicit ListNode(ListNode* next) : val(0), next(next) {}
ListNode(int x, ListNode* next) : val(x), next(next) {}
};

// 创建
ListNode* cinListNode(int n)
{
auto* head = new ListNode();
ListNode* p = head;

cin >> head->val;

for (int i = 1; i < n; i++)
{
int num;
cin >> num;
p->next = new ListNode(num);
p = p->next;
}

return head;
}

// 遍历输出
inline void coutListNode(ListNode* p)
{
for (; p != nullptr; p = p->next)
{
cout << p->val << " ";
}

cout << "\b\n";
}


链表基础
http://blog.ashechol.top/posts/7c77d682.html
作者
Ashechol
发布于
2023年2月15日
许可协议