linked_list.md中增加链表结构体定义C语言代码 (#384)

This commit is contained in:
花无缺 2023-02-27 20:59:59 +08:00 committed by GitHub
parent 88b2537097
commit 731487864f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -91,7 +91,11 @@
=== "C"
```c title=""
/* 链表结点结构体 */
struct ListNode {
int val; // 结点值
ListNode *next; // 指向下一结点的指针(引用)
};
```
=== "C#"