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
浙公网安备 33010602011771号