C封装单链循环队列对象

SingleCircularLinkedListQueue单链循环队列

单链循环队列用单向循环链表实现。

github源码

SingleCircularLinkedListQueue.c文件

#include <stdio.h>
#include <malloc.h>
#include "SingleCircularLinkedListQueue.h"

static void clear(SingleCircularLinkedListQueue *This);
static int isEmpty(SingleCircularLinkedListQueue *This);
static int length(SingleCircularLinkedListQueue *This);
static QNode *getHead(SingleCircularLinkedListQueue *This);
static int enQueue(SingleCircularLinkedListQueue *This,QNode *n);
static int deQueue(SingleCircularLinkedListQueue *This,QNode *n);
static int traverse(SingleCircularLinkedListQueue *This,int (*visit)(QNode *n),int circular);

SingleCircularLinkedListQueue *InitSingleCircularLinkedListQueue(){
    SingleCircularLinkedListQueue *Q = (SingleCircularLinkedListQueue *)malloc(sizeof(SingleCircularLinkedListQueue));
    QNode *p = (QNode *)malloc(sizeof(QNode));
    Q->This = p;
    Q->front = p;
    Q->tear = Q->front;
    p->next = p;
    Q->clear = clear;
    Q->isEmpty = isEmpty;
    Q->length = length;
    Q->getHead = getHead;
    Q->enQueue = enQueue;
    Q->deQueue = deQueue;
    Q->traverse = traverse;
    return Q;
}

void DestroySingleCircularLinkedListQueue(SingleCircularLinkedListQueue *Q){
    Q->clear(Q);
    free(Q->This);
    free(Q);
    Q = NULL;
}

static void clear(SingleCircularLinkedListQueue *This){
    QNode *head = This->This;
    QNode *p = This->This->next;
    QNode *temp = NULL;
    while(p != head){
        temp = p;
        p = p->next;
        free(temp);
    } 
    p = This->This;
    p->next = head;
    This->front = p;
    This->tear = This->front;
}

static int isEmpty(SingleCircularLinkedListQueue *This){
    QNode *p = This->This;
    if(p->next == p){
        return 0;
    }else{
        return 1;
    }
}

static int length(SingleCircularLinkedListQueue *This){
    int j = 0;
    QNode *head = This->This;
    QNode *p = This->This->next;
    while(p != head){
        j++;
        p = p->next;
    } 
    return j;
}

static QNode *getHead(SingleCircularLinkedListQueue *This){
    return This->front->next;
}

static int enQueue(SingleCircularLinkedListQueue *This,QNode *n){
    QNode *head = This->This;
    if(!n) return -1;
    This->tear->next = n;
    n->next = head;
    This->tear = n;
    return 0;
}

static int deQueue(SingleCircularLinkedListQueue *This,QNode *n){
    if(This->front == This->tear){
        n = NULL;
        return -1;
    }
    QNode *temp = This->front->next;
    *n = *(temp);
    This->front->next = temp->next; 
    if(This->tear == temp) This->tear = This->front;
    free(temp);
    return 0;
}

static int traverse(SingleCircularLinkedListQueue *This,int (*visit)(QNode *n),int circular){
    if(This->front == This->tear){
        return -1;
    }
    QNode *head = This->front;
    QNode *temp = This->front->next;
    if(circular){
        while(temp){
            if(temp != head){
                if(visit(temp) != 0) break;
            }
            temp = temp->next;
        } 
    }else{
        while(temp != head){
            if(visit(temp) != 0) break;
            temp = temp->next;
        }
    }
    return 0;
}

SingleCircularLinkedListQueue.h文件

/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef _SINGLECIRCULARLINKEDLISTQUEUE_H
#define _SINGLECIRCULARLINKEDLISTQUEUE_H
/* Includes ------------------------------------------------------------------*/
/* Exported types ------------------------------------------------------------*/
typedef struct QElemType{
    int id;
    char name[20];
}QElemType;     

typedef struct QNode{
    QElemType elem;  //存储空间
    struct QNode *next;
}QNode,*Queueptr;

typedef struct SingleCircularLinkedListQueue{
    QNode *This;
    Queueptr front; //队头
    Queueptr tear; //队尾
    void (*clear)(struct SingleCircularLinkedListQueue *This);
    int (*isEmpty)(struct SingleCircularLinkedListQueue *This);
    int (*length)(struct SingleCircularLinkedListQueue *This);
    QNode *(*getHead)(struct SingleCircularLinkedListQueue *This);
    int (*enQueue)(struct SingleCircularLinkedListQueue *This,QNode *n);
    int (*deQueue)(struct SingleCircularLinkedListQueue *This,QNode *n);
    int (*traverse)(struct SingleCircularLinkedListQueue *This,int (*visit)(QNode *n),int circular);
}SingleCircularLinkedListQueue;

/* Exported macro ------------------------------------------------------------*/
SingleCircularLinkedListQueue *InitSingleCircularLinkedListQueue();
void DestroySingleCircularLinkedListQueue(SingleCircularLinkedListQueue *Q);

#endif

testSingleCircularLinkedListQueue.c文件

#include <stdio.h>
#include <malloc.h>
#include "SingleCircularLinkedListQueue.h"

char name[][3] = {"xw","xh","xm","xg","xl","xz"};

void strCopy(char *str_a,char *str_b){
    while(*str_b != '\0'){
        *str_a++ = *str_b++;
    }
    *str_a = '\0';
}

int printQnode(QNode *node){
    printf("id:%d,name:%s\n",node->elem.id,node->elem.name);
    return 0;
}

int main(void){
    int i;
    QNode *node = NULL;
    SingleCircularLinkedListQueue *queue = InitSingleCircularLinkedListQueue();
    printf("queue is empty:%d\n",queue->isEmpty(queue));
    for(i=0;i<6;i++){
        node = (QNode *)malloc(sizeof(QNode));
        node->elem.id = i;
        strCopy(node->elem.name,name[i]);
        queue->enQueue(queue,node);
    }
    queue->traverse(queue,printQnode,0);
    printf("queue is empty:%d\n",queue->isEmpty(queue));
    printf("queue length:%d\n",queue->length(queue));
    while(queue->length(queue)){
        node = queue->getHead(queue);
        printf("present client: id=%d, name=%s\n",node->elem.id,node->elem.name);
        node = (QNode *)malloc(sizeof(QNode));
        queue->deQueue(queue,node);
        printf("client :id=%d,name=%s finish!\n",node->elem.id,node->elem.name);
        free(node);
        node = NULL;
    }
    queue->clear(queue);
    for (i = 10; i < 16; i++){
        node = (QNode *)malloc(sizeof(QNode));
        node->elem.id = i;
        strCopy(node->elem.name,name[i-10]);
        queue->enQueue(queue,node);
    }   
    queue->traverse(queue,printQnode,1);
    DestroySingleCircularLinkedListQueue(queue);
    return 0;
}

编译:

gcc SingleCircularLinkedListQueue.c SingleCircularLinkedListQueue.h testSingleCircularLinkedListQueue.c -o testSingleCircularLinkedListQueue

运行testSingleCircularLinkedListQueue:

queue is empty:0
id:0,name:xw
id:1,name:xh
id:2,name:xm
id:3,name:xg
id:4,name:xl
id:5,name:xz
queue is empty:1
queue length:6
present client: id=0, name=xw
client :id=0,name=xw finish!
present client: id=1, name=xh
client :id=1,name=xh finish!
present client: id=2, name=xm
client :id=2,name=xm finish!
present client: id=3, name=xg
client :id=3,name=xg finish!
present client: id=4, name=xl
client :id=4,name=xl finish!
present client: id=5, name=xz
client :id=5,name=xz finish!
id:10,name:xw
id:11,name:xh
id:12,name:xm
id:13,name:xg
id:14,name:xl
id:15,name:xz
id:10,name:xw
id:11,name:xh
id:12,name:xm
id:13,name:xg
id:14,name:xl
id:15,name:xz
id:10,name:xw
id:11,name:xh
id:12,name:xm
id:13,name:xg
id:14,name:xl
id:15,name:xz
id:10,name:xw
id:11,name:xh
id:12,name:xm
id:13,name:xg
...

queue->traverse(queue,printQnode,0);
int circular = 0 表示队列只从头到尾遍历Qnode一遍;
int circular = 1 表示队列循环遍历Qnode,所以上面程序运行最后进入循环,不断遍历Qnode。
在实现的visit函数中,返回值如果不为0则退出遍历。
上述代码实现的visit函数为printQnode,返回值为0;

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,128评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,316评论 3 388
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,737评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,283评论 1 287
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,384评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,458评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,467评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,251评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,688评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,980评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,155评论 1 342
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,818评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,492评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,142评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,382评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,020评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,044评论 2 352

推荐阅读更多精彩内容

  • 1.ios高性能编程 (1).内层 最小的内层平均值和峰值(2).耗电量 高效的算法和数据结构(3).初始化时...
    欧辰_OSR阅读 29,353评论 8 265
  • Swift1> Swift和OC的区别1.1> Swift没有地址/指针的概念1.2> 泛型1.3> 类型严谨 对...
    cosWriter阅读 11,094评论 1 32
  • 1 陈寻走到王子墨身边,什么话都没有说,只是用小刀把自己的衣袖隔了下来。 此刻王子墨的心情是复杂的,难以言喻的,他...
    秦约取阅读 464评论 2 10
  • 壹 “不懂得把没什么用的东西及时丢掉,又没有什么好的安放的地方,随手就这么一丢。日子一长,房间就变得乱糟糟的。” ...
    韩半两阅读 339评论 6 1
  • 01一代人的青春年华 芳华就像是电影最后所说的,这就是当时的一个时代里一代人的青春的记忆,没有例外这是一部情怀片,...
    久拆阅读 21,748评论 0 1