隊列的順序存儲

interface IQueue<T> { int GetLength(); void Clear(); void EnQueue(T elem); void Dequeue(); T Peek(); bool IsEmepty(); } class Queue<T> : IQueue<
相關文章
相關標籤/搜索