Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
堆栈和队列在编程中指的是什么,例如java,javascript,php等
堆栈是 LastInFirstOut 数据结构。
队列是 FirstInFirstOut 数据结构。
当您想要对象集合的 FIFO 行为时,请使用 QUEUE,而对于 LIFO 行为,请使用 STACK