Is map<int, list> in C++ possible? [closed] - c++

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I want to have a linkedlist for each key in the map in C++.

Yes, std::map<int, std::list<SomeType>> is possible in C++.
Have a look at ideone, which is useful for testing simple things such as this.

Related

EMACS regex,How to work only in the designated few lines [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
For example, I just want it to work in the 1-10 lines, how to do it. A rookie, thanks for help.
You can use narrow-mode, and it will display only the first 10 lines, hiding the rest.

What is a base initializer in C++? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
My teacher asked me what a base initializer in C++ is.
Can someone of you provide me a definition?
Read up on: Initialiser Lists.
http://www.cprogramming.com/tutorial/initialization-lists-c++.html

Should unique_ptr be used for class member pointers? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Looking for some opinions on this as it's unclear in reading the C++ 11 documentation.
Absolutely. This takes care of the rule of three for you.

BST Supernodes Generation in C/C++ [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
How can I generate a binary search tree with supernodes in C/C++?
Obtain a reference describing the data structure. http://www.cise.ufl.edu/~sahni/papers/super.pdf
Implement the data structure in C/C++.

What are the c++ commands for case speaker? [closed]

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
I'm trying to make a MIDI song using c++. What are the commands?
If your platform is just "C++", then there are no such "commands". The C++ standard does not specify sound at all.