如何使用“先进先出”在 C# .NET 中?

发布于 2024-09-04 05:53:30 字数 32 浏览 3 评论 0原文

.NET 中是否有实现 FIFO 堆栈的标准集合?

Is there a standard collection in .NET that implements a FIFO stack?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

撩起发的微风 2024-09-11 05:53:30

FIFO 的意思是先进先出。您要查找的数据结构称为队列

FIFO means first-in-first-out. The data structure you're looking for is called a Queue.

横笛休吹塞上声 2024-09-11 05:53:30

您是否正在寻找队列类?

Are you looking for the Queue<T> class?

慵挽 2024-09-11 05:53:30

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文