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.
我正在形成一个非常原始的哈希表。如何创建一个向量,其中每个单独的索引都可以延长到自己的列表中?例如,它是否简单vector<list<int>>?
vector<list<int>>
另外,如果我希望链表的每个节点都保存两种数据类型(即字符串字和可以在其中找到的文件的整数行号),这可能吗?我想不会。
vecotr<list<int> >对我来说似乎很好。
vecotr<list<int> >
对于第二个问题,您可以使用
typedef std::pair<std::string, int> Item; std::vector<std::list<Item> >