C/C++队列的链式实现
感觉就是越写代码的完善都越高,bug出现的概率也就越小,这个所有的细节笔栈的链式写法更完善有很多注释,你可以粘贴到dev自己看看#include<iostream>//遵循先进先出的原则 #include<stdlib.h>#include<stdio.h>using namespace std;typedef struct node{ int data; struct node *next;}node;type