Andy 胡

导航

2017年8月26日

C语言,链表操作

摘要: #include "stdafx.h" #include #include #include struct Node { int _id; char s[50]; struct Node* pre; struct Node* next; }; void node_free(struct Node** q) { if( *q != NULL) { ... 阅读全文

posted @ 2017-08-26 11:40 talkwah 阅读(237) 评论(0) 推荐(0) 编辑