Connecting Tech Pros Worldwide Help | Site Map

Playing with Multimap

Newbie
 
Join Date: May 2009
Posts: 21
#1: Oct 8 '09
Lets suppose I want to get only the first key value pair of each key.

I mean in refernce to the below example something like this:
Expand|Select|Wrap|Line Numbers
  1. Johnson, J. 12345
  2. Smith, P. 54321
OR I want to print only the last values like this:-
Expand|Select|Wrap|Line Numbers
  1. Johnson, J. 10000
  2. Smith, P. 60000
How can I do this ?
Here is what I have till now.

Expand|Select|Wrap|Line Numbers
  1. typedef multimap <char*, long, compare> MMap;
  2.  
  3. void main()
  4. {
  5.      MMap D;
  6.      D.insert(MMap::value_type("Johnson,J.", 12345));
  7.      D.insert(MMap::value_type("Smith,P.", 54321));
  8.      D.insert(MMap::value_type("Johnson,J.", 10000));
  9.      D.insert(MMap::value_type("Smith,P.", 20000));
  10.      D.insert(MMap::value_type("Smith,P.", 60000));
  11.  
  12.      MMap::iterator ii;
  13.      for(ii=D.begin(); ii!=D.end(); ii++)
  14.      {
  15.           cout<< (*ii).first<< " "<<
  16.                      (*ii).second<<endl;
  17.      }
  18.      cout<<"There are "<<D.size()<<" elements.\n";
  19. }
  20.  
Output:
Johnson, J. 12345
Johnson, J. 10000
Smith, P. 54321
Smith, P. 20000
Smith, P. 60000
There are 5 elements.

Thanks
Banfa's Avatar
AdministratorVoR
 
Join Date: Feb 2006
Location: South West UK
Posts: 6,153
#2: Oct 8 '09

re: Playing with Multimap


I think I would say that you have chosen the wrong data type. You actually want a relationship between records with the same key, however multimap does not implement this, it just allows non-unique keys in the map but there is no implied relationship between items with the same key.

rather than multimap<char *, long> maybe you should consider something different such as map<char *, list<long> >. That is a map of unique keys where each key has a list of associated long values. Then it would be easy to extract the first long value for each key.

Just a thought, obviously I do not know your whole system design so I can't truely tell how suitable this approach is.
Banfa's Avatar
AdministratorVoR
 
Join Date: Feb 2006
Location: South West UK
Posts: 6,153
#3: Oct 8 '09

re: Playing with Multimap


By the way using you multimap as written you would have to iterate through the multimap and each time you print an entry first check to see if you have already printed an entry for that key and if not print the entry and temporarily store the key in a list of printed keys.
Moderator
 
Join Date: Mar 2007
Location: North Bend Washington USA
Posts: 5,363
#4: Oct 8 '09

re: Playing with Multimap


What you have to do is extract all of the pairs with the duplicate keys.

You do this using multimap::lower_bound and multimap::upper_bound.

multimap::lower_bound returns an iterator to the first pair with that key.
multimap::upper_bound returns an intrerator one beyond the last pair with that key.

Now you can run a loop using the two iterators in the same way that you use the begin and end iterators and pick out the correct record.

BTW, there is an equal_range algorithm that calls multimap::lower_bound and
multimap::upper_bound for you ans returns a pair where first is the iterator returned from multimap::lower_bound and second is the iterator returned from multimap::upper_bound.

I would ditch your code and start over.
Newbie
 
Join Date: Mar 2009
Posts: 17
#5: Oct 9 '09

re: Playing with Multimap


Great :) good suggestions.
Newbie
 
Join Date: May 2009
Posts: 21
#6: Oct 9 '09

re: Playing with Multimap


Thanks guys :) I am very happy to get some guidance finally :) I discussed this problem with many people but unfortunately didn't get any replies.
I will start over again and post my codes for your cross checking..

Thanks
Newbie
 
Join Date: May 2009
Posts: 21
#7: Oct 9 '09

re: Playing with Multimap


Hi do you mean something like this :-

Expand|Select|Wrap|Line Numbers
  1. // multimap::count
  2. #include <iostream>
  3. #include <map>
  4. using namespace std;
  5.  
  6. int main ()
  7. {
  8.   multimap<char,int> mymm;
  9.   multimap<char,int>::iterator it;
  10.   char c;
  11.  
  12.   mymm.insert(pair<char,int>('x',50));
  13.   mymm.insert(pair<char,int>('y',100));
  14.   mymm.insert(pair<char,int>('y',150));
  15.   mymm.insert(pair<char,int>('y',200));
  16.   mymm.insert(pair<char,int>('z',250));
  17.   mymm.insert(pair<char,int>('z',300));
  18.  
  19.   for (c='x'; c<='z'; c++)
  20.   {
  21.     cout << "There are " << (int)mymm.count(c);
  22.     cout << " elements with key " << c << ":";
  23.     for (it=mymm.equal_range(c).first; it!=mymm.equal_range(c).second; ++it)
  24.       cout << " " << (*it).second;
  25.     cout << endl;
  26.   }
  27.  
  28.   return 0;
  29. }
I am working on this to enhance for my purpose.

The results come something like this :-

Expand|Select|Wrap|Line Numbers
  1. There are 1 elements with key x: 50
  2. There are 3 elements with key y: 100 150 200
  3. There are 2 elements with key z: 250 300
I can see some hope there I guess :)

Thanks
Newbie
 
Join Date: May 2009
Posts: 21
#8: Oct 12 '09

re: Playing with Multimap


Ok I am able to build a logic which does exactly how I wanted it to work but when I add more records there are some problems in flagging.

Here is and example:-
when my input is :

Expand|Select|Wrap|Line Numbers
  1.   mymm.insert(pair<char,int>('a',50));
  2.   mymm.insert(pair<char,int>('b',100));
  3.   mymm.insert(pair<char,int>('b',150));
  4.   mymm.insert(pair<char,int>('b',200));
  5.   mymm.insert(pair<char,int>('c',250));
  6.   mymm.insert(pair<char,int>('c',300));
  7.   mymm.insert(pair<char,int>('d',300));
output is correct :-
Expand|Select|Wrap|Line Numbers
  1. single      50
  2. starterminal       100
  3. middle       150
  4. terminal       200
  5. starterminal       250
  6. terminal       300
  7. single      300
But when I change my input like this:-
Expand|Select|Wrap|Line Numbers
  1.   mymm.insert(pair<char,int>('a',50));
  2.   mymm.insert(pair<char,int>('b',100));
  3.   mymm.insert(pair<char,int>('b',150));
  4.   mymm.insert(pair<char,int>('b',200));
  5.   mymm.insert(pair<char,int>('c',250));
  6.   mymm.insert(pair<char,int>('c',300));
  7.   mymm.insert(pair<char,int>('d',300));
  8.   mymm.insert(pair<char,int>('e',250));
  9.   mymm.insert(pair<char,int>('e',300));
The output is not correct:-

Expand|Select|Wrap|Line Numbers
  1. single      50
  2. starterminal       100
  3. middle       150
  4. terminal       200
  5. starterminal       250
  6. terminal       300
  7. single      300
  8. terminal       250
  9. terminal       300
Here is my code:-
Expand|Select|Wrap|Line Numbers
  1. // multimap::count
  2. #include <iostream>
  3. #include <map>
  4. #include<vector>
  5. using namespace std;
  6.  
  7. int main ()
  8. {
  9.   multimap<char,int> mymm;
  10.   multimap<char,int>::iterator it;
  11.   multimap<char, int>::const_iterator m1_cIter;
  12.   char c;
  13.  
  14.   mymm.insert(pair<char,int>('a',50));
  15.   mymm.insert(pair<char,int>('b',100));
  16.   mymm.insert(pair<char,int>('b',150));
  17.   mymm.insert(pair<char,int>('b',200));
  18.   mymm.insert(pair<char,int>('c',250));
  19.   mymm.insert(pair<char,int>('c',300));
  20.   mymm.insert(pair<char,int>('d',300));
  21.   mymm.insert(pair<char,int>('e',250));
  22.   mymm.insert(pair<char,int>('e',300));
  23.  
  24.  
  25.   int i = 0;
  26.   int k = 0;
  27.   for (c='a'; c<='z'; c++)
  28.   {
  29.     for (it=mymm.equal_range(c).first; it!=mymm.equal_range(c).second; ++it)
  30.       if((int)mymm.count(c)>2){      
  31.          if(i==0){
  32.             cout << "start"<<"\t"<<(*it).second << endl;
  33.          }    
  34.          else if(i>0 && i < ( mymm.count(c) - 1)){
  35.             cout << "middle"<<"\t"<<(*it).second << endl;
  36.          }
  37.          else {     
  38.             cout << "terminal"<<"\t"<<(*it).second << endl;
  39.          }
  40.        i++;
  41.       }
  42. /////////////
  43.       else if((int)mymm.count(c)==1){      
  44.             cout << "single"<<"\t"<<(*it).second << endl;   
  45.       }
  46. /////////////
  47. /////////////
  48.       else if((int)mymm.count(c)==2){      
  49.          if(k==0){
  50.             cout << "start" << "\t"<< (*it).second << endl;
  51.          }
  52.          else {
  53.             cout << "terminal" << "\t" << (*it).second << endl; 
  54.          } 
  55.          k++;
  56.       }
  57. ////////////
  58.   }
  59.   return 0;
  60. }
Can you point out the where I am making the mistake ?
One more thing if I change <char, int> to <string , string> will it work ? What changes do I need to make ?
Expand|Select|Wrap|Line Numbers
  1.   mymm.insert(pair<string,string>("a","50"));

Thanks and do reply :)
Banfa's Avatar
AdministratorVoR
 
Join Date: Feb 2006
Location: South West UK
Posts: 6,153
#9: Oct 12 '09

re: Playing with Multimap


The problem is your use of k and i, you would have a similar problem if you had a second group of 3 or more.

This is because you only ever initialise i and k once before the loop.

In fact use of k and i is, in my opinion, poor design. You would be much better off testing your iterator against the end conditions mymm.equal_range(c).first and mymm.equal_range(c).second. That would also allow you to reduce you loop complexity by reducing the program to 2 conditions inside the loop, 1 and more than 1 rather than 1, 2 and more than 2. Actually eliminating i or k and correctly initialising the other may allow a similar reduction.


And on a final but not directly related note this is definitely poor practice

for (c='a'; c<='z'; c++)

The problem is that while C and C++ does guarantee that '0' + 1 == '1' and '1' + 1 == '2' up to '8' + 1 == '9', i.e. does guarantee that if you add 1 onto a character representation of a digit that you get the next digit it does not guarantee that

'a' + 1 == 'b'

and in fact there are some platforms where you loop will not work because they use a run time character set where the letters are not contiguous.

You should avoid any code relying on 'a' + 1 == 'b' in production code especially if it has to be portable. You can easily get round it with a vector of char.
Reply