添加 链表理论基础链表节点C语言版本定义

This commit is contained in:
KingArthur0205
2023-08-24 10:47:38 +08:00
parent b985828838
commit aa1cc80e3c

View File

@ -241,6 +241,16 @@ impl<T> ListNode<T> {
```
### C:
```c
typedef struct ListNodeT {
int val;
struct ListNodeT next;
} ListNode;
```
<p align="center">
<a href="https://programmercarl.com/other/kstar.html" target="_blank">
<img src="../pics/网站星球宣传海报.jpg" width="1000"/>