链队的实现

#include <stdio.h>
#include <stdlib.h>

typedef int  elemType;
typedef struct Node{
    elemType data;
    struct Node *next;
}Node,*PtrToNode;

typedef struct Queue{
    PtrToNode head;//头指针,下一个结点才是实际数据结点
    PtrToNode rear;//尾指针
    int len;//队列长度
}Queue,*QueueList;

//初始化
void init(QueueList l){
    l->rear=NULL;
    l->len=0;
    l->head=(PtrToNode)malloc(sizeof(Node));
    l->head->next=l->rear;
}

//队列长度
int len(QueueList l){
    return l->len;
}

//队列判空
int isEmpty(QueueList l){
    return l->head->next==NULL;
}

//入队
int push(QueueList l,elemType e){
    Node *temp=(PtrToNode)malloc(sizeof(Node));
    temp->data=e;
    temp->next=NULL;

    l->len+=1;

    if (isEmpty(l)){
        l->head->next=temp;
        l->rear=temp;
        return 1;
    }
    l->rear->next=temp;
    l->rear=temp;
    return 1;
}

//出队
int pop(QueueList l,elemType *e){
    if (isEmpty(l)){
        return 0;
    }
    Node *temp=l->head->next;
    *e=temp->data;
    l->head->next=temp->next;
    free(temp);
    temp=NULL;
    l->len-=1;
    return 1;
}

void display(QueueList l){
    Node *p=l->head->next;
    while(p){
        printf("打印:%d\n",p->data);
        p=p->next;
    }
}

int main(){
    QueueList l=(QueueList)malloc(sizeof(Queue));
    init(l);
    printf("isEmpty:%d\n",isEmpty(l));

    push(l,1);
    push(l,2);
    push(l,3);

    printf("len:%d\n",len(l));
    display(l);

    elemType e;
    printf("出队结果:%d,队头元素:%d\n",pop(l,&e),(int)e);
    printf("出队结果:%d,队头元素:%d\n",pop(l,&e),(int)e);
    push(l,4);
    display(l);
    return 0;
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值