fork(1) download
  1. #include <iostream>
  2. #include <map>
  3. #include <sstream>
  4. using namespace std;
  5.  
  6. int main()
  7. {
  8. string line = "paper block book chair";
  9. map<string, int> frequencyMap;
  10.  
  11. istringstream stream(line);
  12. string word;
  13.  
  14. while (stream >> word)
  15. {
  16. ++frequencyMap[word];
  17. }
  18.  
  19. string maxRep; int c = 0;
  20. for (auto& t : frequencyMap) {
  21. if (t.second > c) {
  22. maxRep = t.first;
  23. c = t.second;
  24. }
  25. }
  26.  
  27. cout << "First Most repeated word is: " << maxRep << endl;
  28. }
Success #stdin #stdout 0s 15232KB
stdin
Standard input is empty
stdout
First Most repeated word is: block