Linked List 链表代码实现 Flashcards
1
Q
->的两种作用
A
2
Q
链表代码规范:头节点插入
A
3
Q
实现链表打印的完整代码
A
4
Q
链表在任意位置插入节点函数的原理
A
1.获得原来第n个节点的地址2.产生新的第n个节点
5
Q
链表在任意位置插入节点函数的代码示范
A
6
Q
使用递归Print 函数代码实现
A
7
Q
Insert 函数代码(尾插法)
A
传入函数的参数有误,应该是:**
8
Q
Reverse 函数代码规范
A
9
Q
Reverse Print函数代码规范
A
To summarize, the return
statement is responsible for unwinding the recursion, allowing the program to move back to previous nodes and print the data of each node in reverse order.
10
Q
Reverse (using recursion)
A
11
Q
Double List Node
A
12
Q
Double list insert function
A
13
Q
Double Linked List : Insert (pseudocode )
A
14
Q
Double Linked List : Delete (pseudocode )
A
15
Q
一些概念:(随便看看)
A