zoukankan      html  css  js  c++  java
  • C语言—栈

    栈的操作:进栈和出栈

     1 #include "stdafx.h"
     2 #include "stack.h"
     3 #define maxsize  20
     4 typedef int Elemtype;
     5 
     6 /*顺序存储—数组形式*/
     7 struct stack
     8 {
     9     int data[maxsize];
    10     int top;
    11 };
    12 
    13 void init(struct stack *ps)
    14 {
    15     ps->top = -1;
    16 }
    17 
    18 void init2(struct Doublestack * ps)
    19 {
    20     ps->top1 = -1;
    21     ps->top2 =maxsize;
    22 }
    23 
    24 void  print(int a[],int len)
    25 {
    26     int i;
    27     // len = sizeof(a) / sizeof(a[0]);这样子你得不到长度的,此时a退化为了指针
    28     for (i = 0; i <= len - 1; i++)
    29     {
    30         printf("%d
    ", a[i]);
    31     }
    32 }
    33 int push(struct stack * s, int e)
    34 {
    35     if (s->top == maxsize - 1)
    36         return -1;    
    37     s->data[++s->top] = e;    
    38     return 0;
    39 }
    40 
    41 Elemtype  pop(struct stack *s)
    42 {
    43     int n;
    44     if (s->top == 0)
    45         return -1;
    46     n = s->data[s->top--];
    47     
    48     return n;
    49 }
    50 
    51 //两栈共享
    52 struct Doublestack
    53 {
    54     int data[maxsize];
    55     int top1;
    56     int top2;
    57 };
    58 
    59 int push_two(struct Doublestack *s, int e, int stackflag)
    60 {
    61     if (s->top1 == s->top2 - 1)  //full stack
    62         return -1;
    63     if (stackflag == 1)
    64     {
    65         s->data[++s->top1] = e;
    66     }
    67     else if (stackflag == 2)
    68     {
    69         s->data[--s->top2] = e;
    70     }
    71     return 0;
    72 }
    73 Elemtype pop_two(struct Doublestack *s,  int stackflag)
    74 {
    75     int n;
    76     if (stackflag == 1)
    77     {
    78         if (s->top1 == -1)  //s1 empty
    79             return -1;
    80         n = s->data[s->top1--];
    81     }
    82     else if (stackflag == 2)
    83     {
    84         if (s->top2 ==maxsize)  //s2 empty
    85             return -1;
    86         n = s->data[s->top2++];
    87     }
    88     //printf("%d
    ", n);
    89     return n;
    90 }

    主函数

     1 #include "stdafx.h"
     2 #include  "link.h"
     3 #include "stack.h"
     4 
     5 int main()
     6 {
     7     
     8     /*stack_test*/
     9     //struct stack s;
    10     //struct stack *ps = &s;
    11     //init(ps);
    12 
    13     struct Doublestack s;
    14     struct Doublestack * ps = &s;
    15     init2(ps);
    16     int e = 1;
    17     int n;
    18     //push( ps,  e);
    19     //push(ps, 2);
    20     //print(ps->data,2);
    21     //n = pop(ps);
    22     //printf("%d
    ", n);
    23 
    24     push_two(ps, e,1);
    25     push_two(ps, 2, 2);
    26     print(ps->data, 20);
    27      n=pop_two(ps,1);
    28     printf("n =%d
    ", n);
    29 
    30     system("pause");
    31 
    32 
    33 }
  • 相关阅读:
    SpringBoot笔记十三:引入webjar资源和国际化处理
    Mybatis笔记二:接口式编程
    Mybatis笔记一:写一个demo
    SpringBoot笔记十一:html通过Ajax获取后端数据
    MarkDown语法
    Spring Boot笔记十:IOC控制反转
    USB2.0学习笔记连载(三):通用USB驱动程序解析
    《FPGA全程进阶---实战演练》第四章之Quartus II使用技巧
    摄像头模组基础扫盲
    USB2.0学习笔记连载(二):USB基础知识简介
  • 原文地址:https://www.cnblogs.com/liuhaier/p/10605727.html
Copyright © 2011-2022 走看看