2

我的程序有些问题,也许有人可以帮助我。所以:

int main() {
    std::string col = "maly tekst"
    for_each(/* FILL IN #2*/ f());
    copy(/*FILL IN #3*/);
    std::cout << col; }

输出应该是: TSKET YLAM
我知道我需要使用 Functor 所以我做了这样的事情:

#include <iostream>
#include <string>
#include <algorithm>
class f{
public:
void operator() (char &k)const
{
   k = toupper(k);
}
};
int main(){
std::string col = "maly tekst";
for_each(col.begin(),col.end(),f());
copy(col.rbegin(),col.rend(),back_inserter(col));
std::cout << col << std::endl;
}

但是现在当我运行它时它会返回:

MALY TEKSTTSKET YLAM

有人可以指出我正确的方式,或者帮助我使用这个示例程序吗?

谢谢

E: 忘了补充,我只能在 main 中使用这个功能,我不能添加任何新的东西

4

2 回答 2

2
std::for_each(col.begin(),col.end(),f()); // as before
std::reverse(col.begin(), col.end());
于 2013-01-23T00:03:33.723 回答
0

如果不能使用 std::copy ,则不能使用std::reverse. 要打印 col reverse order,另一种解决方法是直接复制colstream iterator

for_each(col.begin(),col.end(),f());
std::copy(col.rbegin(), col.rend(), std::ostream_iterator<char>(std::cout, ""));
于 2013-01-23T01:03:23.683 回答