Количество слов с использованием STL - PullRequest
0 голосов
/ 05 марта 2012

Как посчитать количество слов в абзаце из указанной позиции с помощью алгоритма STL?

Ответы [ 2 ]

2 голосов
/ 05 марта 2012
#include <algorithm>
#include <cctype>    
#include <functional>
#include <string> 


inline unsigned CountWords( const std::string& s )        
{    
std::string x = s;
std::replace_if( x.begin(), x.end(), std::ptr_fun <int, int> ( std::isspace ), ' ' );
x.erase( 0, x.find_first_not_of( " " ) );
if (x.empty()) return 0;
return std::count( x.begin(), std::unique( x.begin(), x.end() ), ' ' ) + !std::isspace(           *s.regin() );         
}  
0 голосов
/ 27 июня 2015
int count_words(const char *input_buf) {
    stringstream ss;
    ss << input_buf;
    string word;
    int words = 0;
    while(ss >> word) words++;
    return words;
}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...