设为首页 加入收藏

TOP

C语言实现循环队列(一)
2019-08-24 00:10:16 】 浏览:68
Tags:语言 实现 循环 队列

今日在处理数据存储的问题中,数据占用的空间较大,在询问之下,提及循环队列。

没有学习过的我,想想就是头大,只能慢慢从网上找资料,一个字母一个字母的敲,最后,还是慢慢的对队列有了一些理解

对于循环队列有几个操作:

1、初始化

2、入队

3、出队

4、遍历队列

5、判队列空,判队列满

 

具体如何实现,我会在下面通过代码实现

在对循环队列操作之前,先要建立队列结构体元素,

1 typedef struct Queue
2 {
3     int * BUF;
4     int front;
5     int rear;
6 }QUEUE;

 

1、初始化

  初始化,需要完成的工作是,为新建的队列分配内存空间,然后在将头尾指针置零

1 void initQueue(QUEUE *queue_q)
2 {
3     queue_q->BUF = (int *)malloc(sizeof(int)*BUF_SIZE);
4     if(queue_q->BUF != NULL)     //队列内存分配成功
5     {
6         queue_q->front = queue_q->rear = 0; //初始化头尾指针 
7     }
8    
9 }

2、入队

入队主要是将数据放到内存中,但是应该放到那一段内存,这就是一个问题了,

在此,在入队的时候,循环队列的头指针不做动作,尾指针向后偏移

实现代码如下:

其中的 BUF_SIZE 为循环队列的空间大小吗,但是实际能存储的数据字节数是(BUF_SIZE - 1)

#define BUF_SIZE 8

 

1 void In_Queue(QUEUE *queue_q , int value)
2 {
3     if(is_fullQueue(queue_q) != true)        //队列未满
4     {
5         queue_q->BUF[queue_q->rear] = value;
6         queue_q->rear = (queue_q->rear + 1)%BUF_SIZE ;    //尾指针偏移 
7     }
8 }

细心的人会注意到函数 is_fullQueue(queue_q) ,这是对循环队列进行判断,看是不是满了,应该队列的空间是有限的,对于满的队列,无法进行数据入队操作

具体函数如下:

1 unsigned char is_fullQueue(QUEUE *queue_q)
2 {
3     if((queue_q->rear +1)%BUF_SIZE == queue_q->front)
4     {
5         return true;
6     }else
7         return false;
8 }

 

同样,存在一个判空函数,函数的原理是:头指针 = 尾指针

实现代码如下:

1 unsigned char isemptyQueue(QUEUE *queue_q)
2 {
3     if(queue_q->front == queue_q->rear)
4     {
5         return true;
6     }
7     else
8         return false;
9 }

 

3、出队

出队是将头指针位置下的数据取出来,然后头指针偏移到被取数据的位置

代码实现如下:

1  void out_Queue(QUEUE *queue_q , int *value)
2  {
3      if(isemptyQueue(queue_q) != true)        //队列未空
4      {
5         *value = queue_q->BUF[queue_q->front];
6         queue_q->front = (queue_q->front + 1)%BUF_SIZE ;
7      }
8 }

入队要判满,出队则要判空。

因为空的队列,没办法取数据

4、遍历队列

这就是一个简单的打印函数,没什么好说的

唯一需要注意的就是,遍历是出队操作,操作的是头指针,若头指针 = 尾指针,遍历完毕,循环队列为空

 1 void bianli_a(QUEUE *queue_q)
 2 {
 3     if(isemptyQueue(queue_q) != true)
 4     {
 5         int ret=queue_q->front;
 6         while(ret != queue_q->rear)
 7         { 
 8             printf("%d  ",queue_q->BUF[ret]);
 9             ret=(ret+1)%BUF_SIZE;
10         }
11     }
12 }

 

下面是我学习循环队列的时候,写的代码,若有指教,请评论:

 1 #include <stdio.h>
 2 #include <malloc.h>
 3 #include <stdlib.h>
 4 
 5 #define true 1
 6 #define false 0
 7 #define BUF_SIZE 8
 8 typedef struct Queue
 9 {
10     int * BUF;
11     int front;
12     int rear;
13 }QUEUE;
14 
15 void initQueue(QUEUE *queue_q)
16 {
17     queue_q->BUF = (int *)malloc(sizeof(int)*BUF_SIZE);
18     if(queue_q->BUF != NULL)     //队列内存分配成功
19     {
20         queue_q->front = queue_q->rear = 0; //初始化头尾指针 
21     }
22    
23 }
24 
25 //判空
26 unsigned char isemptyQueue(QUEUE *queue_q)
27 {
28     if(queue_q->front == queue_q->rear)
29     {
30         return true;
31     }
32     else
33         return false;
34 }
35  
36 //判满
37 unsigned char is_fullQueue(QUEUE *queue_q)
38 {
39     if((queue_q->rear +1)%BUF_SIZE == queue_q->front)
40     {
41         return true;
42     }else
43         return false;
44 }
45 
46 //入队
47  
48 void In_Queue(QUEUE *queue_q , int value)
49 {
50     if(is_fullQueue(queue_q) != true)        //队列未满
51     {
52         queue_q->BUF[queue_q->rear] = value;
53         queue_q->rear = (queue_q->rear + 1)%BUF_SIZE ;    //尾指针偏移 
54     }
55 }
56  
57 
58 //出队 
59  void out_Queue(QUEUE *queue_q , int *value)
60  {
61      if(isemptyQueue(queue_q) != true)        //队列未空
62      {
63         *value = queue_q->BUF[queue_q->front];
64         queue_q
首页 上一页 1 2 下一页 尾页 1/2/2
】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
上一篇Windows Server 2016-Netdom Join.. 下一篇Win10系统盘制作及安装流程

最新文章

热门文章

Hot 文章

Python

C 语言

C++基础

大数据基础

linux编程基础

C/C++面试题目