gpt4 book ai didi

c++ - 后进先出法的真正含义是什么?

转载 作者:太空宇宙 更新时间:2023-11-04 14:37:20 26 4
gpt4 key购买 nike

如本教程中所述: http://www.learncpp.com/cpp-tutorial/79-the-stack-and-the-heap/

In computer programming, a stack is a container that holds other variables (much like an array). However, whereas an array lets you access and modify elements in any order you wish, a stack is more limited. The operations that can be performed on a stack are identical to the ones above:

1) Look at the top item on the stack (usually done via a function called top()) 2) Take the top item off of the stack (done via a function called pop()) 3) Put a new item on top of the stack (done via a function called push())

但是如果我在 C++ 中定义了两个变量,我就不必以相同的定义顺序使用它们:

例子:

int main() {
int a;
int b;

b = 5;
a = 6;
}

这段代码有问题吗?我可以按照我喜欢的任何顺序使用它们!!我不必先使用 a 然后使用 b

我是不是误会了什么?这是什么?

最佳答案

您混淆了两种不同的堆栈。

一个堆栈是为您的应用程序分配一些内存的地方。这将是关于堆栈和堆以及内存分配位置的讨论的一部分。

另一种堆栈是一种符合后进先出访问方式的数据结构。这可以使用 std::vector 或其他形式的数据结构来实现。

关于c++ - 后进先出法的真正含义是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8425718/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com