图的邻接表表示以及深度优先搜索广度优先搜索

图及对应的邻接表如下:代码如下:datastruct.h#define MaxSize 5 typedef struct{ int data[MaxSize]; int front; // 队头 int rear; // 队尾}SqQueue;void initQueue(SqQueue &qu);...
摘要由CSDN通过智能技术生成

 

 

 

图及对应的邻接表如下:

代码如下:

datastruct.h

#define MaxSize 5  
typedef struct
{
	int data[MaxSize];
	int front;        // 队头
	int rear;         // 队尾
}SqQueue;

void initQueue(SqQueue &qu);

int isQueueEmpty(SqQueue qu);

int isQueueFull(SqQueue qu);

void enterQueue(SqQueue &qu, int x);

int getQueueLen(SqQueue &qu);

void deQueue(SqQueue &qu, int &x);

Queue_Ordercpp.cpp

 

#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#include <string.h>
#include "datastruct.h"
#define MaxSize 5  



//  出进队列都先分别先移动其指针,再出队,队列


// 初始化链表
void initQueue(SqQueue &qu)
{
	qu.front = qu.rear = 0;
}

// 判断是否为空
int isQueueEmpty(SqQueue qu)
{
	if (qu.front == qu.rear)
	{
	//	printf("队列为空了");
		return 1;
	}
	else
	{
		return 0;
	}
}

// 留一个空位  来判断队列是否满
// 满了返回1
int isQueueFull(SqQueue qu)
{
	if ((qu.rear + 1) % MaxSize == qu.front)
	{
		printf("队列
  • 0
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值