摘要: 1.双向链表: typedef struct DuLNode { ElemType data; //数据域 struct DuLNode* prior; //指向前驱的指针域 struct DuLNode* next; //指向后继的指针域 } DuLNode, *DuLinkList; 2.循环链 阅读全文
posted @ 2018-10-30 08:11 H36Phaeton 阅读(217) 评论(0) 推荐(0) 编辑