首页 > 代码库 > 链队的基本操作
链队的基本操作
链队的基本操作:
1,存储结构:
2,创建链式队列:
3,队尾插入,队首删除:
4,遍历操作:
typedef int QElemType; typedef struct node { int data; struct node *next; }QNode,*QueuePre; typedef struct { QueuePre Front; QueuePre rear; }LinkQueue; void CreatQueue(LinkQueue &Q) { Q.rear=(QueuePre)malloc(sizeof(QNode)); Q.Front=Q.rear; if(!Q.Front) exit(-2); Q.rear->next=NULL; } void EnQueue(LinkQueue &Q,int e) { QueuePre p; p=(QueuePre)malloc(sizeof(QNode)); if(!p) exit(-2); p->data=http://www.mamicode.com/e;>链队的基本操作
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。