发布时间:2013-01-04 19:05:04
#include <stdio.h>#include <stdlib.h>typedef int DLL_DataType;typedef struct Node{ DLL_DataType data; struct Node *pre,*next;}DLL_Node;typedef struct{ DLL_Node *head,*tail;}DList;DLL_Node* DLL_makeNode(DLL_DataType value){ ......【阅读全文】
阅读(1703) | 评论(0) | 转发(0)