摘要: #include #include #include typedef struct DoubleLinkNode { int data; struct DoubleLinkNode *prev; struct DoubleLinkNode *next; }Node; /* 创建一个带头节点的双向链表 */ Node* Create_Double_link() {... 阅读全文
posted @ 2018-07-12 09:25 tiny~~ 阅读(380) 评论(0) 推荐(0) 编辑