我正在尝试创建一个回文函数。我必须取一个字符串并将其放入队列、堆栈中。然后比较它们,看看它们是否是回文。在我的函数中,我删除了空格,将所有字母转换为小写,现在我尝试比较 STACK 和 QUEUE 以查看给定的单词是否是回文。但我不能这样做,因为错误消息“无法将 void 类型的值分配给字符类型的实体。” 如果可能的话,请告诉我我做错了什么?
enter bool isPalindrome(string s){
//lowers all letters to lower case so it will not be case sensetive
for (int i = 0; i < s.length(); i ++)
s[i] = tolower(s[i]);
//removes white space from the word that is being checked
char c;
int i = 0;
while (s[i])
{
c=s[i];
if (isspace(c)) c='\n';
putchar (c);
i++;
}
queue<string> q1;
stack<string> s1;
for (int k = 0; k < s.size(); k++)
if (isalpha(s[k]))
q1.push(s);
for (int u = 0; u < s.size(); u++)
if (isalpha(s[u]))
s1.push(s);
char e;
char d;
while (q1.size() > 0 )
e = q1.pop();
d = s1.pop();
if (e != d)
return false;
else
return true;
}