- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在处理一个问题,试图将我的程序转换为仅使用一张 map 而不是两个单独的 map 。
该程序的目标是获取一个文本文件,将文件中每个字母的所有单词存储在映射中 map<char,string>
(a-apples 8 月,b-香蕉,c-citrus 椰子等),但也要跟踪每个单词在带有 map 的文本文件中出现的频率(apples 2,8 月 1 日,banana 2 等)。最后一件事是我需要为每个字母输出最常用的单词以及在另一个文本文件中的相应出现次数。
我有一个程序可以执行此操作,但我需要对其进行更新,以便不再使用两个单独的 map ,而是将它们全部合并为一张 map map<char,map<string,int>>
哪里char
是字母和 <string,int>
pair 是以该字母开头的单词以及该单词在文本文件中的出现次数。
我面临的最大问题是编辑使用 find() 和 insert() 函数的行。
这是我当前的代码
#include <iostream>
#include <map>
#include <string>
#include <fstream>
using namespace std;
bool onlyLetters(string s) ///function which checks if a string contains only letters of the Latin alphabet
{ bool a= true;
for(int i=0;i<s.length();i++){
if(!(s[i]>='a' && s[i]<='z')){
a=false;
break;}
else a=true;
}
return a;
}
void stringLowercase(string &s) ///function which converts all letters in a word to lowercase
{
for(int i=0;i<s.length();i++)s[i]=tolower(s[i]);
}
void insertMostCommon(char a, map<string,int> occurrences, map<string,int> &result) ///function which outputs the pairs (most common word-number of occurences) in the result map
{
int maximum=-1;
string maxKey; ///stores the most common word for char a
for(map<string,int>::iterator it=occurrences.begin();it!=occurrences.end();++it) {
if(it->second > maximum && it->first[0] == a) {
maxKey = it->first;
maximum = it->second;
}
}
result[maxKey] = maximum; ///adds the most common word for char a and how many times it appears in the text file in the result map
}
int main()
{ typedef map<string,int> siMap; ///siMap-stringintMap
typedef map<char,string> csMap; ///csMap- charstringMap
ifstream fin;
ofstream fout;
fin.open("file.txt", ios::in);
fout.open("output.txt", ios::out);
csMap dictionary; ///table which will store pairs letter-word
siMap occurrences; ///table which will store pairs word-number of occurrences
siMap result; ///end result table which will store pairs mostCommonWordForLetter-numberOfOccurrences
string word; ///input word
while(fin >> word) { ///reads word from file
stringLowercase(word); ///converts the word to lowercase
if(onlyLetters(word)){ ///string 'word' only gets input into a table if it only contains letters
siMap::iterator it=occurrences.find(word); ///checks if the word is already in the table
if(it!=occurrences.end()) it->second++; ///if it is, increments the count by one
else {
pair<string,int> pr(word,1); ///if it's not found, creates a new pair with value 1
occurrences.insert(pr);
}
csMap::iterator it2=dictionary.find(word[0]); ///checks if the letter is already in the table
if(it2!=dictionary.end()) it2->second+=word+" "; ///if it is, adds the word to the list of words starting with this letter
else {
pair<char,string> pr(word[0],word+" "); ///if it's not found, creates a new pair letter-word
dictionary.insert(pr);
}
}
}
for(csMap::iterator it2 = dictionary.begin(); it2!=dictionary.end(); ++it2) {
cout << it2->first << " " << it2->second << endl; ///prints out the pairs letter-words that start with this letter
}
cout << endl;
for(siMap::iterator it = occurrences.begin(); it!=occurrences.end(); ++it) {
cout << it->first<< " " << it->second << endl; ///prints out the number of occurrences for each word
}
for(char a='a'; a<='z';a++)insertMostCommon(a,occurrences,result); ///inputs the results into the end table for each letter of the alphabet
auto it=result.begin();
result.erase(it); ///removes the empty pair ('' -1) at the beginning of the table
cout << endl;
for(auto &a: result) {
cout << a.first << " " << a.second << endl;
fout << a.first << " " << a.second << endl; ///word-number of occurrences
}
fin.close();
fout.close();
}
citrus apple apple leg window aa asda banana banana citrus leg tree arm leg Apple 12313 aPPle coconut
apple 4
banana 2
citrus 2
leg 3
tree 1
window 1
a apple apple aa asda arm apple apple
b banana banana
c citrus citrus coconut
l leg leg leg
t tree
w window
aa 1
apple 4
arm 1
asda 1
banana 2
citrus 2
coconut 1
leg 3
tree 1
window 1
apple 4
banana 2
citrus 2
leg 3
tree 1
window 1
map<char,map<string,int>>
.我将不胜感激对此问题的任何帮助或见解,谢谢!
最佳答案
我发现阅读代码有点困难,因此我建议进行一些简化并在适用的情况下使用标准算法。
这是代码中带有注释的示例:
#include <algorithm>
#include <cctype>
#include <cstdint>
#include <iostream>
#include <map>
#include <sstream>
int main() {
std::istringstream file(
"citrus apple apple leg window aa asda banana banana "
"citrus leg tree arm leg Apple 12313 aPPle coconut");
std::map<char, std::map<std::string, std::uintmax_t>> res;
std::string word;
// populate the container
while(file >> word) {
// transform to lowercase
std::transform(word.begin(), word.end(), word.begin(),
[](char ch) {
return std::tolower(ch);
}
);
// add char and word if it only contains letters
if(
std::all_of(word.begin(), word.end(), [](char ch){return std::isalpha(ch);})
) {
// res[word[0]] Creates or returns a reference to an existing
// map<string,uintmax_t>.
// [word] Creates or uses an existing pair<string,uintmax_t> and
// returns a reference to the uintmax_t.
// ++ Adds 1 to the uintmax_t
++res[word[0]][word];
}
}
// print result in C++17 and above:
/*
for(const auto& [ch, scmap] : res) {
std::cout << ch << " (words: " << scmap.size() << "):\n";
for(const auto& [word, count] : scmap) {
std::cout << ' ' << count << ' ' << word << '\n';
}
}
*/
// print result in C++11 or C++14:
for(const auto& ch_scmap : res) {
char ch = ch_scmap.first;
auto& scmap = ch_scmap.second;
std::cout << ch << " (words: " << scmap.size() << "):\n";
for(const auto& word_count : scmap) {
const auto& word = word_count.first;
auto& count = word_count.second;
std::cout << ' ' << count << ' ' << word << '\n';
}
}
}
关于c++ - 需要帮助将两个 STL 映射合二为一(map<char,string> 和 map<string,int> into map<char,map<string,int>>),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62393514/
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 我们不允许提问寻求书籍、工具、软件库等的推荐。您可以编辑问题,以便用事实和引用来回答。 关闭 4 年前。
以下 C++ 代码和 Makefile 产生了一个无法理解的编译错误(对我来说)。谁能解释一下 问题到底是什么? 修复此代码需要做什么?能举个例子吗? 我在 Cygwin 的 GCC 上成功编译了这段
我大量使用 BOOST_FOREACH 来迭代容器,并且由于我最近转向 c++0x,我认为我可以用基于范围的 替换 BOOST_FOREACH >for 构造。下面这段代码 #include #inc
我编写了代码,允许按照输入的顺序遍历映射数据。 我编写了几次代码的解决方案是: 给定键类型 K 和数据类型 D, 标准:: map std::向量 如果想随机查找数据条目,请使用 map.find(K
我在 cygwin 上使用 gcc 3.4.4。我在下面的代码中收到了这个相当令人费解的 STL 错误消息,它根本不使用 STL: #include using namespace std; con
我正在使用 STL 函数 count_if 来计算所有正值在 double vector 中。例如我的代码是这样的: vector Array(1,1.0) Array.push_back(-1.
我正在尝试使用 numpy-STL 从 STL 模型中提取顶点以用于相干点漂移注册。你如何提取顶点?我了解如何从顶点和面列表创建网格,但不了解如何倒退。 我试过:从顶点和面创建一个新网格。导入创建的网
http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2271.html 根据那篇文章,STL 不适合游戏开发。 你对此有何看法? 我目前的
在幕后,STL 映射是一棵红黑树,它使用其键的 typename _Rb_tree::iterator _Rb_tree:: find(const _Key& __k) { iterator _
我对 C++ 有很好的了解,但从未深入研究 STL。我必须学习 STL 的哪一部分才能提高工作效率并减少工作中的缺陷? 谢谢。 最佳答案 I have good knowledge of C++ 恕我
map rollCallRegister; map :: iterator rollCallRegisterIter; pair , bool> returnPair; rollCallRegi
在查看一些算法的模板名称时, 我看到这个名字对应于一个图书馆的概念。 取std::mismatch例如。 template std::pair mismatch( InputIt1 first1, I
我想对 class Person 的对象数组进行排序基于其数据成员' age '.我将对象存储在 vector v 中. 据我所知,至少有 4 种方法可以执行此操作,根据下面编写的方法,我有以下问题。
我对 gcc 或 Visual Studio 打包之外的 STL 实现感到好奇,因此快速 Google 搜索出现了一些结果,例如: Apache stdcxx uSTL rdeSTL 在什么情况下应该
我可以使用例如std::vector吗?在 macOs/XCode 的 DriverKit 驱动程序中? DriverKit 有一些容器类,如 OSArray https://developer.ap
我找不到任何关于如何将范围与容器结合使用的好文档。我正在尝试使用给定的 .insertAfter() 函数将一个元素插入到 SList 中。它需要一个范围,但我不知道如何检索它。 有人可以发布一两个示
如何在(例如)STL 容器中引入聚合初始化支持以正确构造它们?我的意思是: struct A { int i; char c; }; std::list l; // empty l.insert(st
我有一个 STL map : std::map > my_map; 我有两个变量: string name; int age; 这些变量的值发生变化,但本质上我想要做的是: 如果键名不存在,则创建键名
我是 C++ 的新手,请求帮助解决问题。 我正在编写一个简单的 STL 样式函数,它应该返回序列的中间元素( vector 、列表等) 这是我的函数,我尝试使用迭代器的概念 template It
如果我将几个水果名称推回第一个STL列表,同时,我将每个水果的编号推回第二个STL列表;如果我想按字母顺序对第一个STL列表进行排序,我该如何按水果STL列表的顺序对第二个STL列表进行排序? 最佳答
我是一名优秀的程序员,十分优秀!