※ 引述《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