2019年6月12日

链式队列的基本操作

摘要: 1 #include 2 #include 3 typedef int ElemType; 4 //结点结构体 5 typedef struct node{ 6 ElemType data; 7 struct node *next; 8 }LinkQueueNode; 9 //头结点的前一个节点 10 typedef struct Node{ 11 ... 阅读全文

posted @ 2019-06-12 20:59 18软工五班龙向昆 阅读(168) 评论(0) 推荐(0) 编辑

导航