-
Notifications
You must be signed in to change notification settings - Fork 0
/
stack.c
98 lines (72 loc) · 1.74 KB
/
stack.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
#include <stdio.h>
#include <stdlib.h>
#define SIZE 10
int init(int *top){
*top = 0;
}
//スタックが満杯かチェック
void isFull(int st[]){
int count;
count = 0;
for ( int i = 0; i < SIZE; i++ ){
//printf("%d\n", st[i]);
if ( st[i] != 0 ){
count++;
}
}
if ( count == SIZE ){
printf("スタックが満杯です...\n");
exit(1);
}
}
//スタックが空かチェック
void isEmpty(int st[]){
int count;
count = 0;
for ( int i = 0; i < SIZE; i++ ){
//printf("%d\n", st[i]);
if ( st[i] == 0 ){
count++;
}
}
if ( count == SIZE ){
printf("スタックが空です...\n");
exit(1);
}
}
int push(int x, int *top, int st[]){
isFull(st); //スタックが満杯かチェック
st[*top] = x; //xを格納する
printf("st[%d]に%dを格納しました!\n", *top,x);
++*top; //topの値を+1した値を代入
//printf("%d\n", *top);
}
void pop(int *top, int st[]){
int popData;
isEmpty(st);
/*for ( int i = 0; i < SIZE; i++ ){
printf("st[%d]:%d\n", i, st[i]);
}*/
--*top;
popData = st[*top];
printf("st[%d]から%dを取り出しました!\n", *top, popData);
st[*top] = 0;
//printf("top:%d\n", *top);
}
int main(void){
int top;
int st[SIZE];
init(&top); //初期化
for ( int i = 0; i < SIZE; i++ ){
st[i] = 0; //初期化
}
push(3,&top,st); //スタックに3を挿入
push(5,&top,st); //スタックに5を挿入
push(7,&top,st); //スタックに7を挿入
//push(8,&top,st); //スタックに8を挿入
//push(3,&top,st); //スタックに3を挿入
pop(&top,st);
push(1,&top,st);
pop(&top,st);
return 0;
}