0
votes
1answer
234 views

C++ using std::accumulate to generate a map<int,int>

I have a problem creating a std::map from a vector of pointers, called "files", each one points to an object with three member variables, one of which is "int size". The key of the map would be the ...
0
votes
2answers
569 views

Sorting groups using map and accumulate in Scheme

I'm trying to use "map" and "accumulating" functions in scheme for sorting unknown amount of listing into a lists that the first will have all the first places of the olds lists and so on. (1 2 3.. ) ...