07 2018 档案

摘要:#include #include int len; //定义双向链表的节点 typedef struct Node { int data; struct Node *prior; struct Node *next; }Node; //初始化一个链表的节点、 Node* create_node(void) { Node *p; p = (No... 阅读全文
posted @ 2018-07-07 17:04 杨云晴 阅读(8913) 评论(3) 推荐(0) 编辑