Exercise: map<K, V> m(cmp)

Aug 4, 2009 at 3:42pm
Hello everyone!

I am doing some C++ exercises again, and ran into trouble.

Exercise text:

7-1. Extend the program from §7.2/124 to produce its output sorted by occurrence count. That is, the output should group all the words that occur once, followed by those that occur twice, and so on.


The Exercise itself is:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#include <map>
#include <iostream>
using namespace std;
int main()
{
    string s;
    map<string, int> counters;   // store each word and an associated counter

    // read the input, keeping track of each word and how often we see it 
    while (cin >> s)
        ++counters[s];

    // write the words and associated counts
    for (map<string, int>::const_iterator it = counters.begin();
         it != counters.end(); ++it) {
        cout << it->first << "\t" << it->second << endl;
    }
    return 0;
}


1. Can I use predicate to order map by values? In current exercise - by int values.
2. Should I just manipulate the output?

3. Can anyone give me some solutions? If possible
then by using predicate on map directly using the form map<K, V> m(cmp).


Thanks.
Last edited on Aug 4, 2009 at 3:55pm
Aug 4, 2009 at 4:05pm
Well, I'd use a boost::multi_index_container at that point.

Another alternative is to make a multimap of <int, string> from the map< string, int >
and output begin() to end().

Aug 4, 2009 at 4:29pm
Thanks for the answer, but I can't use those things. I'm trying to use the knowledge that the book has offered me so far.

So, I don't know if it's good or not, but I think that I managed to solve it.

I made it like this:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#include <map>
#include <iostream>
using namespace std;
//Return iterator pointing to the map element with maximum value
map<string, int>::const_iterator findmax(map<string, int> counters)
{
	map<string, int>::const_iterator newmax = counters.begin();
	for (map<string, int>::const_iterator it = counters.begin();
		it != counters.end(); ++it) {
		if(newmax->second < it->second){
			newmax = it;
		}
	}	
	return newmax;	
}
int main()
{
	string s;
	map<string, int> counters;   // store each word and an associated counter

	// read the input, keeping track of each word and how often we see it 
	while (cin >> s)
	++counters[s];
	map<string, int>::const_iterator maximum;
	//find the maximum value in the map
	maximum = findmax(counters);

	//The first for loop
       // i points to the next value
	for (map<string, int>::size_type i = 1; i <= maximum->second; ++i) {
               //The second for loop
              //Find all elements in the map that have a value that corresponds to i
		for (map<string, int>::const_iterator it = counters.begin();
                                               it != counters.end(); ++it) {
			if(it->second == i)
				cout << it->first << "\t" << it->second << endl;
		}			
	}
	return 0;
}
Last edited on Aug 4, 2009 at 4:32pm
Topic archived. No new replies allowed.