98-6(栈-回文的使用)

#include <iostream>
#include <stdlib.h>
#include <stdbool.h>
using namespace std;
typedef struct node
{
    char c;
    struct node* pnext;
}qnode,*pnode;
typedef struct stack
{
    pnode top;
    pnode botton;
}qstack,*pstack;
void init(pstack s)
{
    s->top=(pnode)malloc(sizeof(qnode));
    s->botton=s->top;
}
bool empty(pstack s)
{
    if(s->top==s->botton)
        return true;
    else
        return false;
}
void push(pstack s,char c_)
{
    pnode q;
    q=(pnode)malloc(sizeof(qnode));
    q->c=c_;
    q->pnext=s->top;
    s->top=q;
}
char gettop(pstack s)
{
    return s->top->c;
}
void pop(pstack s)
{
    pnode q;
    if(empty(s))
        cout<<"出栈失败";
    else
    {
        q=s->top;
        s->top=q->pnext;
        free(q);
    }
    
}
int lengh(pstack s)
{
    int i;
    pnode q=s->top;
    if(q==s->botton)
        i=0;
    return i;
}
void judge(char a[],int i,int &lengh_)
{
    stack s;
    init(&s);
    int j;
    char k;
    for(j=0;j<(i/2);j++)
    {
        push(&s,a[j]);
    }
    if(i%2==0)//如果是双数,则从i%2开始于栈顶比较
        j=i/2;
    else
        j=i/2+1;//如果是单数,则从i%2+1开始比较
        for(;j<i;j++)
        {
            k=gettop(&s);
            if(a[j]==k)
            {
                pop(&s);
            }
        }
    lengh_=lengh(&s);
}
int main()
{
    int i=0,l;
    char ch;
    char a[100];
    while((ch=getchar())!='\n')
    {
        a[i]=ch;
        i++;
    }
    judge(a,i,l);
    if(l==0)
    {cout<<"yes";
    }
    else
    {
        cout<<"no";
    }
    
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值