※ 引述《MrPanda (不人气揪团师)》之铭言:
: 标题: [问题] 找出句子中最常的单字(C++)
: 时间: Sun Dec 10 13:03:18 2017
:
~
: 喂入的资料(Input):
:
: 条件
: 1. 遇到符号'.'为结数字符
: 2. 以空白键当作做为区隔单字识别字符
: 3. 长度一样则输出第一个
: 输入测试字串
: I am a normal ptt user like everybody.
: Hello world.
:
: 推 loveflames: 建议你把cppreference的list initialization看个一轮 12/12 15:00
: → loveflames: 问题通通迎刃而解 12/12 15:00
: → galic: 楼上示范一下如何在读完你说的参考资料以后 写出"迎刃而解" 12/12 17:34
: → galic: 的程式码 12/12 17:34
路过献丑一下XD
=====================
#include <iostream>
#include <string>
#include <list>
int main()
{
std::list<std::string> l;
std::string str;
do {
std::cin >> str;
if (str[str.length()-1] == '.') {
std::string str2 = str.substr(0, str.length()-1);
l.push_back(str2);
} else {
l.push_back(str);
}
} while (str[str.length()-1] != '.');
l.sort([](std::string &lhs, std::string &rhs)
{
return (lhs.length() > rhs.length()) ? true : false;
});
// 输出最长单字(在最前面)
std::cout << std::endl << l.front() << std::endl;
return 0;
}
===========================
初来乍到的,规矩多有不熟悉^^"
https://ideone.com/eKv1BS