带头结点的链队列的基本操作

实现链队列的入队列及出队列操作。

函数接口定义:

Status QueueInsert(LinkQueue *Q,ElemType e);

Status QueueDelete(LinkQueue *Q,ElemType *e)

其中Qe 都是用户传入的参数。LinkQueue 的类型定义如下:

typedef int ElemType; 
typedef struct LNode
{
    ElemType data;
	struct LNode * next;
}LNode,*LinkList;
typedef struct
 {
   LinkList front,rear; /* 队头、队尾指针 */
 }LinkQueue;

裁判测试程序样例:

#include <stdio.h>
#include<malloc.h>
#define OK 1
#define ERROR 0
typedef int Status;
typedef int ElemType; 
typedef struct LNode
{
    ElemType data;
	struct LNode * next;
}LNode,*LinkList;

typedef struct
 {
   LinkList front,rear; /* 队头、队尾指针 */
 }LinkQueue;
 /* 带头结点的链队列的基本操作 */
 Status InitQueue(LinkQueue *Q)
 { /* 构造一个空队列Q */
	 LinkList p;
   p=(LNode*)malloc(sizeof(LNode)); 
   p->next=NULL;
   (*Q).rear=(*Q).front=p;
   return OK;
 }
Status List(LinkList L)
{
	LinkList p;
	if(!L) return ERROR;
	p=L->next;
	
	while(p)
	{
		printf(" %d",p->data);
		p=p->next;
	}
	printf("\n");
    return OK;
}

int QueueLenth(LinkQueue Q)
{
	int n=0;
	LinkList p;
	if(Q.rear==Q.front)
		return 0;
	p=Q.front->next;
	while(p)
	{
		n++;
		p=p->next;
	}
	return n;
}

int main()
{
	int x;
	LinkQueue Q;
	InitQueue(&Q);
	QueueInsert(&Q,1);QueueInsert(&Q,2);QueueInsert(&Q,3);
	List(Q.front );
	QueueDelete( &Q,&x);
	printf(" %d %d\n",x,QueueLenth(Q));
	QueueDelete(&Q,&x);QueueDelete(&Q,&x);
	printf(" %d %d\n",x,QueueLenth(Q));
	return 0;
}

/* 请在这里填写答案 */

输出样例:

在这里给出相应的输出。例如:

 1 2 3
 1 2
 3 0

代码:

/* 请在这里填写答案 */
Status QueueInsert(LinkQueue *Q,ElemType e)
{
	LinkList q;
	q=(LNode*)malloc(sizeof(LNode));
	q->next = NULL;
	q->data = e;
	(*Q).rear->next = q;/* . 和 -> 区别: . 是结构体用, -> 是结构体指针用*/
	(*Q).rear = q;
	return OK;
}

Status QueueDelete(LinkQueue *Q,ElemType *e)
{
	LinkList n;
	n = (*Q).front->next;
	int t;
	t = n->data;
	if(n == NULL){
		return ERROR;
	}
	(*Q).front->next = n->next;
	free(n);
	*e = t; 
}
在C++中,头结点的单向链表实现的队列通常包含两个指针:头节点front和尾节点rear。基本操作主要包括: 1. **初始化**:创建一个空的链队列,即head和tail都指向NULL。 ```cpp Queue<int> queue; // 使用结构体或类实现Queue queue.head = nullptr; queue.tail = nullptr; ``` 2. **入队(enqueue)**:将元素添加到队尾。如果队列已满,则需要考虑是否扩容。 ```cpp void enqueue(int value) { Node* newNode = new Node(value); // 创建新节点 if (queue.tail == nullptr) { queue.head = newNode; queue.tail = newNode; } else { newNode->next = queue.tail; queue.tail->next = newNode; queue.tail = newNode; } } ``` 3. **出队(dequeue)**:从队首移除并返回元素。如果队列为空,则抛出异常。 ```cpp int dequeue() { if (queue.head == nullptr) { throw std::runtime_error("Queue is empty"); } int removedValue = queue.head->value; Node* temp = queue.head; queue.head = queue.head->next; delete temp; return removedValue; } ``` 4. **查看队首元素(peek)**:检查队首元素,但不删除它。同样处理空队列情况。 ```cpp int peek() const { if (queue.head == nullptr) { throw std::runtime_error("Queue is empty"); } return queue.head->value; } ``` 5. **判断队列是否为空(empty)**: ```cpp bool empty() const { return queue.head == nullptr; } ``` 6. **队列长度(size)**: ```cpp int size() const { int count = 0; Node* current = queue.head; while (current != nullptr) { count++; current = current->next; } return count; } ```
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值