Merge pull request #1748 from xu-kai-xu/master

Update 链表理论基础.md
This commit is contained in:
程序员Carl 2022-11-23 10:06:47 +08:00 committed by GitHub
commit 14d0ddc33d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -9,7 +9,7 @@
什么是链表链表是一种通过指针串联在一起的线性结构每一个节点由两部分组成一个是数据域一个是指针域存放指向下一个节点的指针最后一个节点的指针域指向null空指针的意思
的入口节点称为链表的头结点也就是head。
的入口节点称为链表的头结点也就是head。
如图所示:
![链表1](https://img-blog.csdnimg.cn/20200806194529815.png)