• 队列的基础操作


    队列是一种特殊的线性表,只允许在表的前端进行删除操作,而在表的后端进行插入操作,和栈一样,队列是一种操作受限制的线性表。进行插入操作的端称为队尾,进行删除操作的端称为队头。

    #define SIZE 5
    typedef struct queue
    {
        int inner;
    }Queue;
    Queue a[SIZE];
    Queue *head = NULL;
    Queue *tail = NULL;
    
    
    /*(1)初始化队列:Init_Queue(Queue *q) ,初始条件:队q 不存在。操作结果:构造了一个空队;
    (2)入队操作: In_Queue(Queue *q, int x),初始条件: 队q 存在。操作结果: 对已存在的队列q,插入一个元素x 到队尾,队发生变化;
    (3)出队操作: Out_Queue(Queue *q),初始条件: 队q 存在且非空,操作结果: 删除队首元素,并返回其值,队发生变化;
    (4)读队头元素:Pop_Queue(Queue *q),初始条件: 队q 存在且非空,操作结果: 读队头元素,并返回其值,队不变;
    (5)判队空操作:Empty_Queue(q),初始条件: 队q 存在,操作结果: 若q 为空队则返回为1,否则返回为0。*/
    
    
    void Init_Queue(Queue *q)
    {
        head = q;
        tail = q;
    }
    
    void In_Queue(Queue *q, int x)
    {
        if (q != NULL)
        {
            if (tail == &a[SIZE])
            {
                printf("The Queue is full filled.");
            }
            else
            {
                tail->inner = x;
                tail++;
            }
        }
    }
    
    int Out_Queue(Queue *q)
    {
        int temp = 0;
        if (head!=tail&&q!=NULL)
        {
            temp = head->inner;
            head++;
        }
        else
        {
            printf("NULL");
        }
        return temp;
    }
    
    int  Pop_Queue(Queue *q)
    {
        if (head != tail&&q != NULL)
        {
            return head->inner;
        }
        else
            printf("NULL");
    }
    
    
    int Empty_Queue(Queue *q)
    {
        if (head == tail)
            return 1;
        else
            return 0;
    }
    
    
    
    (。・∀・)ノ
  • 相关阅读:
    maven继承父工程统一版本号
    shiro权限控制参考
    动态查询列表页面的分页
    SVN服务器更改ip地址后怎么办
    cookie记住密码功能
    分享小插件的问题
    阿里云短信验证
    从svn上更新maven项目时,所有文件变成包的形式
    Maven工具
    Mybatis的dao层传递单参出现的问题
  • 原文地址:https://www.cnblogs.com/FlyerBird/p/9052584.html
Copyright © 2020-2023  润新知