2016年4月15日

数据结构--链队列基本操作

摘要: #include //链队列的基本操作,首先我们要知道队列是在队头进行删除,队尾进行插入 #include#include typedef struct Sq{ int data; //数据域 struct Sq *n... 阅读全文

posted @ 2016-04-15 00:20 Magic_chao 阅读(204) 评论(0) 推荐(0) 编辑

导航