c语言实现双向链表

/** 双链表操作 开发环境codeblocks12.11 xxwu */ #include <stdio.h> #include <stdlib.h> #include <stdbool.h> typedef int ElemType; typedef struct DNode{     ElemType data;     struct DNode *prior, *next; } DNode
相关文章
相关标签/搜索