Is map<int, list> in C++ possible? -
i want have linkedlist each key in map in c++.
yes, std::map<int, std::list<sometype>> possible in c++.
have @ ideone, useful testing simple things such this.
i want have linkedlist each key in map in c++.
yes, std::map<int, std::list<sometype>> possible in c++.
have @ ideone, useful testing simple things such this.
Comments
Post a Comment