순차적 스택
12382 단어 창고
1 #include<stdio.h>
2 #include<stdlib.h>
3 #define Stack_Size 100
4 #define StackIncrement 10
5 #define OK 1
6 #define TRUE 1
7 #define FALSE 0
8 #define ERROR -1
9 #define OVERFLOW -2
10 typedef int Status;
11 typedef struct
12 {
13 int *base;
14 int *top;
15 int stacksize;
16 }SqStack;
17 Status InitStack(SqStack &S)
18 {
19 S.base=(int *)malloc(Stack_Size*sizeof(int));
20 if(!S.base) exit(OVERFLOW);
21 S.top=S.base;
22 S.stacksize=Stack_Size;
23 return OK;
24 }
25 Status StackEmpty(SqStack &S)
26 {
27 if(S.top==S.base)
28 return TRUE;
29 return FALSE;
30 }
31 Status StackLength(SqStack S)
32 {
33 return (S.top-S.base);
34 }
35 Status GetTop(SqStack S,int &e)
36 {
37 if(S.top==S.base) return ERROR;
38 e=*(S.top-1);
39 return OK;
40 }
41 Status Push(SqStack &S,int e)
42 {
43 if((S.top-S.base)==S.stacksize)
44 {
45 S.base=(int *)realloc(S.base,(S.stacksize+StackIncrement)*sizeof(int));
46 if(!S.base) exit(OVERFLOW);
47 S.top=S.base+S.stacksize;
48 S.stacksize+=StackIncrement;
49 }
50 *S.top++=e;
51 return OK;
52 }
53 Status Pop(SqStack &S,int &e)
54 {
55 if(S.top==S.base) return ERROR;
56 e=*--S.top;
57 return OK;
58 }
59 Status PrintSqStack(SqStack S)
60 {
61 int i,length=StackLength(S);
62 puts(" :");
63 puts("********************");
64 for(i=0;i<length;i++)
65 printf("%d ",S.base[i]);
66 puts("
********************");
67 return OK;
68 }
69 Status main()
70 {
71 int i,e,length;
72 SqStack S;
73 InitStack(S);
74 puts(" :");
75 scanf("%d",&length);
76 puts(" :");
77 for(i=0;i<length;i++)
78 {
79 scanf("%d",&e);
80 Push(S,e);
81 }
82 PrintSqStack(S);
83 puts(" :");
84 scanf("%d",&e);
85 Push(S,e);
86 PrintSqStack(S);
87 puts(" :");
88 Pop(S,e);
89 printf(" :%d
",e);
90 PrintSqStack(S);
91 system("pause");
92 return OK;
93 }
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python urllib 라이브러리에서 헤더를 추가하는 방법일부 사이트를 요청할 때, 우리는 요청 헤더를 붙여야만 웹 페이지의 캡처를 완성할 수 있다. 그렇지 않으면 오류가 생겨서 캡처한 웹 페이지로 돌아갈 수 없다.다음은 요청 헤더를 추가하는 두 가지 방법을 소개한다. 방...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.