双链表

2019-10-09  本文已影响0人  jas_go
typedef struct DNode{
    int data;
    DNode *prior, *next;
}DNode, *DLinkList;
上一篇 下一篇

猜你喜欢

热点阅读