我正在尝试解决一个topcoder问题,我必须从字符串中删除所有元音,除非该字符串只包含元音。我试图使用stable_partition和函数isVowel对字符串进行分区。 `
// {{{ VimCoder 0.3.6 <-----------------------------------------------------
// vim:filetype=cpp:foldmethod=marker:foldmarker={{{,}}}
#include <algorithm>
#include <bitset>
#include <cmath>
#include <cstdio>
#include <cstdlib>
#include <ctime>
#include <deque>
#include <functional>
#include <iomanip>
#include <iostream>
#include <list>
#include <map>
#include <numeric>
#include <queue>
#include <set>
#include <sstream>
#include <stack>
#include <utility>
#include <vector>
using namespace std;
// }}}
class VowelEncryptor
{
public:
bool isVowel(char letter)
{
return (letter == 'a' || letter == 'e' || letter == 'o' || letter == 'o' || letter == 'u');
}
vector <string> encrypt(vector <string> text)
{
int nElements = text.size();
for (int i = 0; i < nElements; i++)
{
string::iterator bound = stable_partition(text[i].begin(), text[i].end(), isVowel);
if (bound != text.end())
{
text[i].erase(text[i].begin(), bound);
}
}
return text;
}
};
但在编译时我收到此错误消息:
(3 of 458): error: cannot convert ‘VowelEncryptor::isVowel’ from type ‘bool (VowelEncryptor::)(char)’ to type ‘bool (VowelEncryptor::*)(char)’
答案 0 :(得分:2)
尝试isVowel
静态。
在没有实际对象实例的情况下,无法使用指向成员函数的指针,stable_partition
无法帮助。使功能static
或使用std::bind
。
答案 1 :(得分:2)
您的isVowel
函数不依赖于VowelEncryptor
类对象的任何状态。它应该是自由函数或静态成员函数。顺便说一句,这应该可以解决您的错误。