请问,怎么用template实现栈的所有操作,并且检测输入的数据是否是回文?

 我来答
语多放肆
2015-01-20 · TA获得超过156个赞
知道小有建树答主
回答量:122
采纳率:75%
帮助的人:90.4万
展开全部
#include <iostream>
#include <vector>
#include <string>
#include <algorithm>
using namespace std;
//使用template
template<typename T>
class stack 
{
private:
struct node
{
node * next;
T data;
};
node  * top;
public:
stack()
{
top = new node;
top->next =NULL;
}
bool empty()
{
return (top==NULL);
}
void push(T ch)
{
node *p =new node;
p->data = ch;
p->next = top->next;
top = p;
}
T pop()
{
T x = top->data;
node *p = top;
top  = top->next;
free(p);
return x;
}
};
using namespace std;
int main(void)
{
cout<<"输入字符串:\n";
string str;
while(cin>>str)
{
stack<char>st;
int flag=0;
//全部入栈
int i;
for (i=0;i<str.size();i++)
st.push(str[i]);
i=0;
//和原来字符串对比--真是怀疑那些出题让学生这么写的智商
while(!st.empty())
if(st.pop()!=str[i++])
{
cout<<"不是回文串\n";
flag=1;
break;
}
if(!flag)
   cout<<"是回文串\n";
cout<<"输入字符串:\n";
}
return 0;
}
来自:求助得到的回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式