C#手写简单的Queue(参考源码)

本文介绍了一个自定义的泛型队列类MyQueue的实现细节,包括动态扩容、元素检索、队列清空等功能,并提供了完整的源代码示例。
using System;

namespace DataStructure
{
    public class MyQueue<T>
    {
        private T[] _array;
        private int _head;
        private int _tail;
        private int _size;

        public MyQueue(int capacity)
        {
            if (capacity < 0)
                throw new Exception("默认长度不可小于零");
            this._array = new T[capacity];
            this._head = 0;
            this._tail = 0;
            this._size = 0;
        }

        public int Count
        {
            get { return _size; }
        }

        public bool IsEmpty()
        {
            return _size == 0;
        }

        public void Clear()
        {
            if (this._head < this._tail)
            {
                Array.Clear(this._array, this._head, this._size);
            }
            else
            {
                Array.Clear(this._array, this._head, this._array.Length - this._head);
                Array.Clear(this._array, 0, this._tail);
            }

            this._head = 0;
            this._tail = 0;
            this._size = 0;
        }

        public void Enqueue(T item)
        {
            if (this._size == this._array.Length)
            {
                int capacity = (int) ((long) this._array.Length * 200L / 100L);
                if (capacity < this._array.Length + 4)
                    capacity = this._array.Length + 4;
                this.SetCapacity(capacity);
            }

            this._array[this._tail] = item;
            this._tail = (this._tail + 1) % this._array.Length;
            ++this._size;
        }

        public T Dequeue()
        {
            if (this._size == 0)
                throw new Exception("队列里没有数据了");
            T obj = this._array[this._head];
            this._array[this._head] = default(T);
            this._head = (this._head + 1) % this._array.Length;
            --this._size;
            return obj;
        }

        public T Peek()
        {
            if (this._size == 0)
                throw new Exception("队列里没有数据了");
            return this._array[this._head];
        }

        private void SetCapacity(int capacity)
        {
            T[] objArray = new T[capacity];
            if (this._size > 0)
            {
                if (this._head < this._tail)
                {
                    Array.Copy(this._array, this._head, objArray, 0, this._size);
                }
                else
                {
                    Array.Copy(this._array, this._head, objArray, 0, this._array.Length - this._head);
                    Array.Copy(this._array, 0, objArray, this._array.Length - this._head, this._tail);
                }
            }

            this._array = objArray;
            this._head = 0;
            this._tail = this._size == capacity ? 0 : this._size;
        }

        public bool Contains(T item)
        {
            int index = this._head;
            int size = this._size;
            while (size-- > 0)
            {
                if (item == null)
                {
                    if (this._array[index] == null)
                        return true;
                }
                else if (this._array[index] != null && this._array[index].Equals(item))
                    return true;

                index = (index + 1) % this._array.Length;
            }

            return false;
        }

        public void TrimExcess()
        {
            if (this._size >= (int) ((double) this._array.Length * 0.9))
                return;
            this.SetCapacity(this._size);
        }
    }
}

 

这个是完整源码 python实现 Flask,Vue 【python毕业设计】基于Python的Flask+Vue物业管理系统 源码+论文+sql脚本 完整版 数据库是mysql 本文首先实现了基于Python的Flask+Vue物业管理系统技术的发展随后依照传统的软件开发流程,最先为系统挑选适用的言语和软件开发平台,依据需求分析开展控制模块制做和数据库查询构造设计,随后依据系统整体功能模块的设计,制作系统的功能模块图、E-R图。随后,设计框架,依据设计的框架撰写编码,完成系统的每个功能模块。最终,对基本系统开展了检测,包含软件性能测试、单元测试和性能指标。测试结果表明,该系统能够实现所需的功能,运行状况尚可并无明显缺点。本文首先实现了基于Python的Flask+Vue物业管理系统技术的发展随后依照传统的软件开发流程,最先为系统挑选适用的言语和软件开发平台,依据需求分析开展控制模块制做和数据库查询构造设计,随后依据系统整体功能模块的设计,制作系统的功能模块图、E-R图。随后,设计框架,依据设计的框架撰写编码,完成系统的每个功能模块。最终,对基本系统开展了检测,包含软件性能测试、单元测试和性能指标。测试结果表明,该系统能够实现所需的功能,运行状况尚可并无明显缺点。本文首先实现了基于Python的Flask+Vue物业管理系统技术的发展随后依照传统的软件开发流程,最先为系统挑选适用的言语和软件开发平台,依据需求分析开展控制模块制做和数据库查询构造设计,随后依据系统整体功能模块的设计,制作系统的功能模块图、E-R图。随后,设计框架,依据设计的框架撰写编码,完成系统的每个功能模块。最终,对基本系统开展了检测,包含软件性能测试、单元测试和性能指标。测试结果表明,该系统能够实现所需的功能,运行状况尚可并无明显缺点。本文首先实现了基于Python的Flask+Vue物业管理系统技术的发
评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值