双链表 2019-10-09 本文已影响0人 jas_go typedef struct DNode{ int data; DNode *prior, *next; }DNode, *DLinkList;