Skip to content

Commit

Permalink
链表理论基础:调整笔误
Browse files Browse the repository at this point in the history
  • Loading branch information
gaoyangu committed Apr 22, 2022
1 parent 664746f commit 0749373
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions problems/链表理论基础.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

## 双链表

单链表中的节点只能指向节点的下一个节点
单链表中的指针域只能指向节点的下一个节点

双链表:每一个节点有两个指针域,一个指向下一个节点,一个指向上一个节点。

Expand Down Expand Up @@ -56,7 +56,7 @@

![链表3](https://img-blog.csdnimg.cn/20200806194613920.png)

这个链表起始节点为2, 终止节点为7, 各个节点分布在内存个不同地址空间上,通过指针串联在一起。
这个链表起始节点为2, 终止节点为7, 各个节点分布在内存的不同地址空间上,通过指针串联在一起。

# 链表的定义

Expand Down

0 comments on commit 0749373

Please sign in to comment.