队列的链式实现源码

typedef struct tag_Queue_Node_S
{
    int QueueData;
    struct tag_Queue_Node_S *next;
}Queue_Node_S;

typedef struct tag_Queue_Link_S
{
    Queue_Node_S *front;
    Queue_Node_S *rail;
}Queue_link_S;

int LinkQueue_Init(Queue_link_S **sl)
{
    *sl = (Queue_link_S *)malloc(sizeof(Queue_link_S));
    if(NULL == *sl)
    {
        return T_ERR;
    }

    (*sl)->front = NULL;
    (*sl)->rail = NULL;

    return T_OK;

}

/*入队*/
int LinkQueue_In(Queue_link_S **sl, int Element)
{   
    Queue_Node_S *p = NULL;
   
    if(NULL == *sl)
    {
        return T_ERR;
    }

    p = (Queue_Node_S *)malloc(sizeof(Queue_Node_S));
    if(NULL == p)
    {
        return T_ERR;
    }

    p->next = NULL;
    p->QueueData = Element;

    if((*sl)->front == NULL && (*sl)->rail == NULL)
    {
        (*sl)->front = p;
        (*sl)->rail = p;
    }
    else
    {
        (*sl)->rail->next = p;
        (*sl)->rail = p;

    }
   
    return T_OK;

}
/*出队*/
int LinkQueue_Out(Queue_link_S **sl ,int *Element)
{
    Queue_Node_S *p = NULL;

    if(((*sl)->front == NULL && (*sl)->rail == NULL) || (NULL == Element))
    {
        return T_ERR;
    }

    p = (*sl)->front;
    *Element = p->QueueData;

    if((*sl)->front == (*sl)->rail)
    {
        (*sl)->front = NULL;
        (*sl)->rail = NULL;
    }
    else
    {
        (*sl)->front = p->next;
    }

    free(p);

    return T_OK;
   
}
/*队列是否为空*/

int LinkQueue_IsEmpty(Queue_link_S **sl)
{
    if((*sl)->front == (*sl)->rail)
    {
        return T_ERR;
    }

    else
    {
        return T_OK;
    }
}

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值