摘要: 1 #include 2 #include 3 using std::cout; 4 using std::endl; 5 6 #define SUM 3 //此处设置队列的大小,因为队列节点是 malloc 的空间,一般不用设置队列上限。但是为了测试方便就加了上限 7 8 typedef struct QNode{ 9 int data; ... 阅读全文
posted @ 2017-06-10 23:12 _zyt 阅读(887) 评论(0) 推荐(0) 编辑