Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit aa1cc80

Browse files
添加 链表理论基础链表节点C语言版本定义
1 parent b985828 commit aa1cc80

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

‎problems/链表理论基础.md‎

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,16 @@ impl<T> ListNode<T> {
241241
```
242242

243243

244+
### C:
245+
246+
```c
247+
typedef struct ListNodeT {
248+
int val;
249+
struct ListNodeT next;
250+
} ListNode;
251+
```
252+
253+
244254
<p align="center">
245255
<a href="https://programmercarl.com/other/kstar.html" target="_blank">
246256
<img src="../pics/网站星球宣传海报.jpg" width="1000"/>

0 commit comments

Comments
(0)

AltStyle によって変換されたページ (->オリジナル) /