• 大小: 1KB
    文件类型: .cpp
    金币: 1
    下载: 0 次
    发布日期: 2021-01-10
  • 语言: C/C++
  • 标签: C语言  

资源简介

识别一次读入的一个以@为结束符的字符序列是否为形如‘序列1&序列2’模式的字 符序列。其中序列1 和序列2 中都不含字符‘&’,且序列2 是序列1 的逆序列。例如,‘a+b&b+a’是属该模 式的字符序列,而‘1+3&3-1’则不是。

资源截图

代码片段和文件信息

#include
#include
typedef struct node
{
char data;
struct node *next;
}linkstack*lp;
void initstack(linkstack **A)
{
(*A)=(linkstack*)malloc(sizeof(linkstack));
(*A)->next=NULL;
}
void push(linkstack *topchar x)
{
    linkstack *temp;
    temp=(linkstack*)malloc(sizeof(linkstack));
    temp->data=x;
    temp->next=top->next;
    top->next=temp;
}
void pop(linkstack *topchar *x)
{
if(top->next!=NULL)
{
linkstack *temp;
temp=top->next;
top->next=temp->next;
*x=temp->data;

评论

共有 条评论