在C語(yǔ)言中,棧是一種后進(jìn)先出(LIFO)的數(shù)據(jù)結(jié)構(gòu)。要輸出棧中所有元素,可以按照以下步驟進(jìn)行:
以下是一個(gè)示例代碼:
#include <stdio.h>
#define MAX_SIZE 100
typedef struct {
int data[MAX_SIZE];
int top;
} Stack;
// 初始化棧
void init(Stack *s) {
s->top = -1;
}
// 判斷棧是否為空
int is_empty(Stack *s) {
return s->top == -1;
}
// 判斷棧是否已滿
int is_full(Stack *s) {
return s->top == MAX_SIZE - 1;
}
// 入棧
void push(Stack *s, int value) {
if (is_full(s)) {
printf("Stack is full.\n");
return;
}
s->data[++(s->top)] = value;
}
// 出棧
int pop(Stack *s) {
if (is_empty(s)) {
printf("Stack is empty.\n");
return -1;
}
return s->data[(s->top)--];
}
// 輸出棧中所有元素
void print_stack(Stack *s) {
printf("Stack elements: ");
while (!is_empty(s)) {
int value = pop(s);
printf("%d ", value);
}
printf("\n");
}
int main() {
Stack stack;
init(&stack);
// 入棧操作
push(&stack, 1);
push(&stack, 2);
push(&stack, 3);
// 輸出棧中所有元素
print_stack(&stack);
return 0;
}
運(yùn)行以上代碼會(huì)輸出棧中所有元素:3 2 1