隊列及其在.NET FrameWork中的源碼分析

1.隊列是插入操作限定在表的尾部而其他操作限定在表的頭部進行的線性表。首先我們把隊列的一些基本操作抽象爲接口,如下: public interface ICaryQueue<T>     {         int GetLength();         bool IsEmpty();         void Clear();         void In(T item);         
相關文章
相關標籤/搜索