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
相關文章
相關標籤/搜索