随笔分类 - C/C++数据结构
双端链表 冒泡排序 有头结点
摘要:1 #include 2 #include 3 #include 4 5 typedef char * ElemType; 6 7 typedef struct DuLNode { 8 ElemType data; 9 struct DuLNode *prior, *next; 10 } DuLNode, *DuLinkList; 11 12 13...
阅读全文