gpt4 book ai didi

c++ - C++ 中是否有链表预定义库?

转载 作者:IT老高 更新时间:2023-10-28 21:37:45 24 4
gpt4 key购买 nike

在 C++ 中是否有一个我可以只使用#include 的链表?或者如果我想使用一个,我需要自己创建一个吗?

最佳答案

作为 daniel notes ,是的,std::list .用法是:

#include <list>
// ...
std::list<int> listOfInts;
listOfInts.push_back(1);
// ...

等等。

您可以找到 STL 类的完整列表 here .您所追求的部分是 3.2,容器类。 C++ 标准库的另一个有用引用是here。 .

关于c++ - C++ 中是否有链表预定义库?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1735324/

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