首页 > 解决方案 > 寻找地图技术

问题描述

这是我正在处理的代码。它从字符串中获取字数,但现在我一直在尝试使用地图应用相同的逻辑,但由于地图在运行时无法获取键值而无法这样做。我该怎么做每次将字符串中的每个单词存储在不同键中的键中,以便我可以获得实际的字数。知道我该怎么做吗?

 #include<iostream>
 #include<conio.h>
 #include<string>


 using namespace std;

 int main()
{

    map<string, int> stringCounts;
    map<string, int>::iterator iter;
    string words;


    int TOTAL = 0;
    char a[1000];
    cout << "enter the string = ";
    cin.getline(a, 1000);
    int Totalwords = 0;
    int no = 0;

    for (int i = 0; a[i] != '\0'; i++)
    {
        if ((int(a[i]) >= 65 && int(a[i]) <= 90) || (int(a[i]) >= 97 && int(a[i]) <= 122))
        {

        }
        else
        {
            Totalwords++;
        }
        no = i;
    }

    TOTAL = Totalwords;
    cout << "number of words = " << TOTAL << endl;
    string *words = new string[TOTAL];


    for (int i = 0, j = 0; j < TOTAL, i <= no;)
    {
        if ((int(a[i]) >= 65 && int(a[i]) <= 90) || (int(a[i]) >= 97 && int(a[i]) <= 122))
        {
            words[j] = words[j] + a[i];
            stringCounts[words[j]]++;
       for (iter = stringCounts.begin(); iter != stringCounts.end(); iter++)
      {
        cout << "word: " << iter->first << ", count: " << iter->second << 
        endl;
      }
            i++;
        }
        else
        {
            j++;
            i++;
        }
    }

    _getch();
}

标签: c++c++11countstdmap

解决方案


如何每次将字符串中的每个单词存储在不同键中的键中,以便获得实际的字数。

这可以如下进行。您甚至可以处理给定句子/字符串的每个单词(假设每个单词都用空格分隔)。

需要注意的几点:

  1. 如果您使用 C++,只需坚持使用 C++ 标准库(#include<conio.h>已在您的解决方案中使用)
  2. 避免练习using namespace std;
  3. 如果你想使用std::map<>,你必须包括标题<map>

例如这里是一个示例测试输出:https ://www.ideone.com/KGua1M 在此处输入图像描述

#include <iostream>
#include <map>
#include <string>
#include <sstream>

 int main()
{
   std::string inputString;
   std::cout << "Enter the string = ";
   std::getline(std::cin, inputString);

   std::map<std::string, int> Map; // word, no. of times
   size_t wordCount = 0;
   size_t letterCount = 0;

   std::stringstream sstr(inputString);
   std::string word;

   while (std::getline(sstr, word, ' '))
   {
       Map[word]++;
       wordCount++;
       letterCount += word.size();
   }

   std::cout << "Total Words: " << wordCount << "\n\n";
   std::cout << "Total letters: " << letterCount << "\n\n";
   std::cout << "Each words count\n\n"  ;

   for(const auto& it: Map)
    std::cout << it.first << " " << it.second << " times\n";
   return 0;
}

推荐阅读