摘要: #include<stdio.h> #include<malloc.h> typedef char ElemType; typedef struct DNode { ElemType data; struct DNode *prior; struct DNode *next; }DNode,*DLi 阅读全文
posted @ 2020-06-19 20:01 石乐智先生 阅读(206) 评论(0) 推荐(0) 编辑