체인 스택
10803 단어 창고
1 #include<stdio.h>
2 #include<stdlib.h>
3 #define Stack_Size 100
4 #define Stackincrement 10
5 #define ok 1
6 #define error -1
7 #define overflow 2
8 #define TRUE 1
9 #define FALSE 0
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 else 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 int main()
60 {
61 int i,j,n,e;
62 SqStack S1;
63 InitStack(S1);
64 printf(" ;
");
65 scanf("%d",&n);
66 printf(" :
");
67 for(i=0;i<n;i++)
68 {
69 scanf("%d",&e);
70 Push(S1,e);
71 }
72 printSqStack(S1);
73 printf(" ;
");
74 scanf("%d",&e);
75 Push(S1,e);
76 printSqStack(S1);
77 printf(" S1 :
");
78 Pop(S1,e);
79 printf(" :%d
",e);
80 printSqStack(S1);
81 system("pause");
82 return 0;
83 }
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Python urllib 라이브러리에서 헤더를 추가하는 방법일부 사이트를 요청할 때, 우리는 요청 헤더를 붙여야만 웹 페이지의 캡처를 완성할 수 있다. 그렇지 않으면 오류가 생겨서 캡처한 웹 페이지로 돌아갈 수 없다.다음은 요청 헤더를 추가하는 두 가지 방법을 소개한다. 방...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.