摘要: #include <stdio.h> #include <stdlib.h> typedef int ElemType; typedef struct DLNode{ ElemType data; struct DLNode *next; struct DLNode *prior; }DLNode; 阅读全文
posted @ 2019-05-20 21:11 PowerZZJ 阅读(1577) 评论(0) 推荐(0) 编辑