添加 链表理论基础链表节点C语言版本定义
This commit is contained in:
parent
b985828838
commit
aa1cc80e3c
|
|
@ -241,6 +241,16 @@ impl<T> ListNode<T> {
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
### C:
|
||||||
|
|
||||||
|
```c
|
||||||
|
typedef struct ListNodeT {
|
||||||
|
int val;
|
||||||
|
struct ListNodeT next;
|
||||||
|
} ListNode;
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
<p align="center">
|
<p align="center">
|
||||||
<a href="https://programmercarl.com/other/kstar.html" target="_blank">
|
<a href="https://programmercarl.com/other/kstar.html" target="_blank">
|
||||||
<img src="../pics/网站星球宣传海报.jpg" width="1000"/>
|
<img src="../pics/网站星球宣传海报.jpg" width="1000"/>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue