ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

静态栈

2022-04-22 15:05:21  阅读:103  来源: 互联网

标签:count return 静态 void cursor int Length


 1 #include <stdio.h>
 2 #include <stdlib.h>
 3 
 4 #define Length 10
 5 
 6 struct Stack
 7 {
 8    int element[Length];
 9    int cursor;
10 
11    void initial()
12    {
13       cursor = -1;
14       for (int i = 0; i < Length; i++)
15          element[i] = 0;
16    }
17 
18    void push(int e)
19    {
20       if (cursor == Length - 1)
21          return;
22       element[++cursor] = e;
23    }
24 
25    void pop()
26    {
27       if (cursor == -1)
28          return;
29       element[cursor--] = 0;
30    }
31 
32    int peek()
33    {
34       if (cursor == -1)
35          return 0;
36       return element[cursor];
37    }
38 
39    void print()
40    {
41       int iMax = Length - 1;
42       for (int i = 0; i < Length; i++)
43       {
44          printf("%d", element[i]);
45          if (i != iMax)
46             printf(", ");
47       }
48    }
49 
50    void pushByCount(int count)
51    {
52       if (count > Length)
53          return;
54       for (int i = 0; i < count; i++)
55          push(i + 1);
56    }
57 
58    void popByCount(int count)
59    {
60       int cursorMax = cursor + 1;
61       if (count > cursorMax)
62          return;
63       for (int i = 0; i < count; i++)
64          pop();
65    }
66 };
67 
68 int main()
69 {
70    Stack s;
71    s.initial();
72 
73    s.pushByCount(10);
74    s.print();
75 
76    printf("\n");
77 
78    s.popByCount(5);
79    s.print();
80 
81    printf("\n");
82 
83    int cursor = s.peek();
84    printf("栈顶值 = %d", cursor);
85 
86    return 0;
87 }

 

标签:count,return,静态,void,cursor,int,Length
来源: https://www.cnblogs.com/lshuai-/p/16178872.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有