Chinaunix首页 | 论坛 | 博客
  • 博客访问: 630900
  • 博文数量: 1008
  • 博客积分: 10
  • 博客等级: 民兵
  • 技术积分: 5175
  • 用 户 组: 普通用户
  • 注册时间: 2012-07-31 09:44
文章分类
文章存档

2012年(1008)

我的朋友

分类:

2012-08-01 11:27:40

原文地址:栈 --C 作者:luozhiyong131

  1. #include <stdlib.h>
  2. #include <stdio.h>

  3. #define TRUE 1
  4. #define FALSE 0

  5. typedef struct node {
  6.   int data;
  7.   struct node *next;
  8. } Stack;


  9. /*栈初使化*/
  10. void StackInit(Stack *top)
  11. {
  12.     top->next = NULL;
  13. }


  14. /*进栈*/
  15. int Push(Stack *top, int x)
  16. {
  17.     Stack *p;
  18.     p = (Stack *)malloc(sizeof(Stack));
  19.     if(p == NULL)
  20.         return FALSE;
  21.     p->data = x;
  22.     p->next = top->next;
  23.     top->next = p;
  24.     return TRUE;    
  25. }


  26. /*栈顶指针是否为空*/
  27. int IsEmpty(Stack *top)
  28. {
  29.     if(top->next == NULL)
  30.         return TRUE;
  31.     return FALSE;
  32. }

  33. /*出栈*/
  34. int Pop(Stack *top, int *x)
  35. {
  36.     Stack *p;
  37.     if(IsEmpty(top))
  38.         return FALSE;
  39.     p = top->next;
  40.     *x = p->data;
  41.     top->next = p->next;
  42.     free(p);
  43.     return TRUE;
  44. }

  45. int main()
  46. {
  47.   int x;
  48.   Stack *top = (Stack *)malloc(sizeof(Stack));
  49.   StackInit(top);                        /* 栈初始化 */
  50.   printf("input some positive integers:\n");
  51.   scanf("%d", &x);
  52.   while(x > 0)
  53.   {
  54.     Push(top, x);                        /* 进栈 */
  55.     scanf("%d", &x);
  56.   }
  57.   while(Pop(top, &x))                    /* 出栈 */
  58.   {
  59.     printf("%d ", x);                         /* 输出到屏幕 */
  60.   }
  61.   printf("\n", x);
  62.   return 0;
  63. }
阅读(168) | 评论(0) | 转发(0) |
0

上一篇:线性表

下一篇:队列

给主人留下些什么吧!~~