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

pull/396/head
花无缺 2 years ago committed by GitHub
parent 88b2537097
commit 731487864f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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

Loading…
Cancel
Save