Adding to a vector of pair

C++VectorStd Pair

C++ Problem Overview


I have a vector of pair like such:

vector<pair<string,double>> revenue;

I want to add a string and a double from a map like this:

revenue[i].first = "string";
revenue[i].second = map[i].second;

But since revenue isn't initialized, it comes up with an out of bounds error. So I tried using vector::push_back like this:

revenue.push_back("string",map[i].second);

But that says cannot take two arguments. So how can I add to this vector of pair?

C++ Solutions


Solution 1 - C++

Use std::make_pair:

revenue.push_back(std::make_pair("string",map[i].second));

Solution 2 - C++

IMHO, a very nice solution is to use c++11 emplace_back function:

revenue.emplace_back("string", map[i].second);

It just creates a new element in place.

Solution 3 - C++

revenue.pushback("string",map[i].second);

>But that says cannot take two arguments. So how can I add to this vector pair?

You're on the right path, but think about it; what does your vector hold? It certainly doesn't hold a string and an int in one position, it holds a Pair. So...

revenue.push_back( std::make_pair( "string", map[i].second ) );     

Solution 4 - C++

Or you can use initialize list:

revenue.push_back({"string", map[i].second});

Solution 5 - C++

Read the following documentation:

http://cplusplus.com/reference/std/utility/make_pair/

or

http://en.cppreference.com/w/cpp/utility/pair/make_pair

I think that will help. Those sites are good resources for C++, though the latter seems to be the preferred reference these days.

Solution 6 - C++

revenue.push_back(pair<string,double> ("String",map[i].second));

this will work.

Solution 7 - C++

You can use std::make_pair

revenue.push_back(std::make_pair("string",map[i].second));

Solution 8 - C++

Using emplace_back function is way better than any other method since it creates an object in-place of type T where vector<T>, whereas push_back expects an actual value from you.

vector<pair<string,double>> revenue;

// make_pair function constructs a pair objects which is expected by push_back
revenue.push_back(make_pair("cash", 12.32));

// emplace_back passes the arguments to the constructor
// function and gets the constructed object to the referenced space
revenue.emplace_back("cash", 12.32);

Solution 9 - C++

As many people suggested, you could use std::make_pair.

But I would like to point out another method of doing the same:

revenue.push_back({"string",map[i].second});

push_back() accepts a single parameter, so you could use "{}" to achieve this!

Solution 10 - C++

Try using another temporary pair:

pair<string,double> temp;
vector<pair<string,double>> revenue;

// Inside the loop
temp.first = "string";
temp.second = map[i].second;
revenue.push_back(temp);

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionRichardView Question on Stackoverflow
Solution 1 - C++avakarView Answer on Stackoverflow
Solution 2 - C++m47hView Answer on Stackoverflow
Solution 3 - C++Ed S.View Answer on Stackoverflow
Solution 4 - C++Hsu HauView Answer on Stackoverflow
Solution 5 - C++hochlView Answer on Stackoverflow
Solution 6 - C++Caner SAYGINView Answer on Stackoverflow
Solution 7 - C++Sardeep LakheraView Answer on Stackoverflow
Solution 8 - C++Ritankar PaulView Answer on Stackoverflow
Solution 9 - C++sarthak bansalView Answer on Stackoverflow
Solution 10 - C++Dheeraj KumarView Answer on Stackoverflow