如何使用“先进先出”在 C# .NET 中?
.NET 中是否有实现 FIFO 堆栈的标准集合?
Is there a standard collection in .NET that implements a FIFO stack?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
.NET 中是否有实现 FIFO 堆栈的标准集合?
Is there a standard collection in .NET that implements a FIFO stack?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
FIFO 的意思是先进先出。您要查找的数据结构称为队列。
FIFO means first-in-first-out. The data structure you're looking for is called a Queue.
您是否正在寻找
队列
类?Are you looking for the
Queue<T>
class?FIFO 表示先进先出。这与 LIFO (或 lucero 指出的 FILO)相反。这是后进先出。
链接。
比较队列、堆栈和哈希表的 FIFO 操作的队列对象:
http://www.csharpfriends.com/Articles/getArticle .aspx?articleID=66
队列 上的 MSDN 链接
以及堆栈用于 LIFO 操作:堆栈链接
FIFO means first in first out. This is as opposed to LIFO (or FILO as lucero pointed out). which is last in first out.
A link comparing queues, stacks, and hashtables.
You want to use a queue object for FIFO operations:
http://www.csharpfriends.com/Articles/getArticle.aspx?articleID=66
MSDN link on queues
And a stack is used for LIFO operations: Stack Link