求一个用队列判断回文的程序c++的,简单易懂最好 20

千万别用c我看不懂滴~~~呵呵本人有点笨啊作业都不会写啊要用队列的咧... 千万别用c我看不懂滴~~~
呵呵
本人有点笨啊
作业都不会写啊
要用队列的咧
展开
 我来答
Draconious
2009-06-16 · TA获得超过6242个赞
知道大有可为答主
回答量:2142
采纳率:0%
帮助的人:2585万
展开全部
你指字符串的回文吗?

#include <iostream>
using namespace std;

int ispalindrome(char str[]){
int i=0;
while(str[i]!='\0') i++;
i--;
int j=0;
while(j<i){
if(str[j]!=str[i]) return 0;
j++;
i--;
}
if(j>=i) return 1;
}

int main(){
char str[100];
cout<<"Enter the string: ";
cin>>str;
if(ispalindrome(str)) cout<<"This string is a palindrome."<<endl;
else cout<<"This string is not a palindrome."<<endl;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
小李尧李尧
2009-06-17
知道答主
回答量:3
采纳率:0%
帮助的人:0
展开全部
#include<stdio.h>

#define MAXN 26
typedef char QueueEntry;
typedef struct queue{

int front;
int rear;
QueueEntry entry[MAXN];
}Queue;

void Creat_queue(Queue* q)
{
q->front=-1;
q->rear=-1;
}

int en_queue(Queue* q,char x)

{

if(q->rear==MAXN-1)
return(1);
q->rear++;
q->entry[q->rear]=x;
return(0);
}
int de_queue(Queue* q,char* p_y)

{

if(q->front==q->rear)
return(1);
q->front++;
*p_y=q->entry[q->front];
return(0);
}
void main()
{
Queue q;
Creat_queue(&q);
char x;

while((x=getchar())!='\n'&&!en_queue(&q,x));
while(!de_queue(&q,&x))
{

printf("%c",x);
}
printf("\n");

}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 1条折叠回答
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

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

类别

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

说明

0/200

提交
取消

辅 助

模 式