#include<stdio.h>
//定义栈的结构
struct stacktype
{
   
int stack[4];//存放数据元素
   int top;//栈顶指针
};

struct stacktype * InitialStack()
{
 
struct stacktype * head;
 head
=(struct stacktype *)
    malloc(
sizeof(struct stacktype ));
 head
->top=-1;// <=> s.top=-1
 return head;
}
//入栈
void PushIntoStack(struct stacktype * head,
                   
int value)
{
 
if(head->top==3)
    printf(
"Push Failed \n");
 
else
    {
     head
->top++;//
     head->stack[head->top]=value;
     }
}
void output(struct stacktype * head)
{
   
int i;
   
for(i=0;i<=head->top;i++)
       printf(
" %d ",head->stack[i]);
}

void main()
{  
  
struct stacktype * head;
  head
=InitialStack();
  PushIntoStack(head,
1);
  PushIntoStack(head,
2);
  PushIntoStack(head,
3);
  output(head);
}

 

参考:  http://www.cnblogs.com/emanlee/archive/2007/09/12/890645.html?updated=1

相关文章:

  • 2022-01-13
  • 2021-07-07
  • 2021-10-29
  • 2021-12-06
  • 2021-12-20
  • 2021-09-29
  • 2021-07-27
  • 2021-12-06
猜你喜欢
  • 2022-01-23
  • 2021-08-02
  • 2021-06-12
  • 2021-12-11
  • 2022-01-09
  • 2021-05-24
  • 2022-01-26
相关资源
相似解决方案