hello world,初级水平抄抄代码先看懂
Posted redxi
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了hello world,初级水平抄抄代码先看懂相关的知识,希望对你有一定的参考价值。
#include
#include
#include
#define MaxSize 100
typedef char ElemType;
typedef struct
{
ElemType data[MaxSize];
int top;
}SqStack;
void InitStack(SqStack *&s)
{
s=(SqStack *)malloc(sizeof(SqStack));
s->top=-1;
}
void DestroyStack(SqStack *s)
{
free(s);
}
bool StackEmpty(SqStack *s)
{
return(s->top==-1);
}
bool Push(SqStack *s,ElemType e)
{
if(s->top==MaxSize-1)
return false;
s->top++;
s->data[s->top]=e;
return true;
}
bool Pop(SqStack *s,ElemType &e)
{
if(-1==s->top)
return false;
e=s->data[s->top];
s->top--;
return true;
}
bool GetTop(SqStack *s,ElemType &e)
{
if(-1==s->top)
return false;
e=s->data[s->top];
return true;
}
bool Match(SqStack *s,char exp[],int n)
{
int i=0;char e;
bool match=true;
InitStack(s);
while(i以上是关于hello world,初级水平抄抄代码先看懂的主要内容,如果未能解决你的问题,请参考以下文章
先看懂IPFS和Filecoin,打造出自身的被动收入
浅谈TCP IP协议栈入门知识
如何掌握一个程序
tornado初级篇
Code changed world
Java基础语法