I would like to have an array (or a vector) and at each position I would like to store a couple of integers like this.
(1, 999)
(15, 1000)
(19, 1897)
etc..
Now I know I can have a list of maps, but I feel it is an overkill.
Any ideas?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I think you want to use
pair<int, int>here as thevector<T>element. This allows youIt’s bit more usable with a typedef.