码迷,mamicode.com
首页 > 编程语言 > 详细

数据结构和算法-数组队列

时间:2020-07-11 19:06:23      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:void   数据结构   ISE   static   rgs   row   组队   排队   ret   

队列:

队列是一个有序列表,遵循先入先出原则,可以用数组或链表实现

使用场景

用于排队,按顺序执行

客户端:

public static void Main(string[] args)
        {
            ArrayQueue<int> queue = new ArrayQueue<int>(1000);
            queue.Push(1);
            queue.Push(2);
            queue.Push(3);
            queue.Push(4);
            queue.Push(5);

            Console.WriteLine(queue.Pop());
            Console.WriteLine(queue.Pop());
            queue.Push(6);
            queue.Push(7);
            queue.Print();
            Console.ReadKey();
        }

数组队列

public class ArrayQueue<T>
    {
        private int _front = -1;//队首
        private int _rear = -1;//队尾
        private int _maxSize = 0;
        private T[] _arr = null;
        public ArrayQueue(int maxSize)
        {
            _maxSize = maxSize;
            _arr = new T[maxSize];
        }
        public bool IsFull()
        {
            return _rear >= _maxSize - 1;
        }
        public bool IsEmpty()
        {
            return _front >= _rear;
        }
        public void Push(T n)
        {
            if (this.IsFull())
            {
                throw new Exception("队列已满");
            }
            _arr[++_rear] = n;
        }
        public T Pop()
        {
            if (this.IsEmpty())
            {
                throw new Exception("队列已空");
            }
            return _arr[++_front];
        }
        public void Print()
        {
            if (this.IsEmpty())
            {
                Console.WriteLine("队列已空");
                return;
            }
            for (int i = _front+1; i <= _rear; i++)
            {
                Console.WriteLine($"{i}:{_arr[i]}");
            }
        }


    }

数据结构和算法-数组队列

标签:void   数据结构   ISE   static   rgs   row   组队   排队   ret   

原文地址:https://www.cnblogs.com/fanfan-90/p/13284786.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!