stack.c
来自「该文件夹中包含了大部分经典的算法的源程序代码」· C语言 代码 · 共 88 行
C
88 行
/* file name : stack.c */
/* 使用堆栈处理数据--新增、删除、输出 */
#include <stdio.h>
#include <stdlib.h>
#include <conio.h>
#define MAX 100
void push_f(void); /* 新增函数 */
void pop_f(void); /* 删除函数*/
void list_f(void); /* 输出函数 */
char item[MAX][20];
int top = -1;
void main(void)
{
char option;
while(1)
{
printf("\n *****************************\n");
printf(" <1> insert (push)\n");
printf(" <2> delete (pop)\n");
printf(" <3> list\n");
printf(" <4> quit\n");
printf(" *****************************\n");
printf(" Please enter your choice...");
option = getche();
switch(option)
{
case '1':
push_f();
break;
case '2':
pop_f();
break;
case '3':
list_f();
break;
case '4':
exit(0);
}
}
}
void push_f(void)
{
if(top >= MAX-1) /* 当堆栈已满,则显示错误 */
printf("\n\nStack is full !\n");
else
{
top++;
printf("\n\n Please enter item to insert: ");
gets(item[top]);
}
}
void pop_f(void)
{
if(top < 0) /* 当堆栈没有数据存在,显示错误 */
printf("\n\n No item, stack is empty !\n");
else
{
printf("\n\n Item %s deleted\n", item[top]);
top--;
}
}
void list_f(void)
{
int count = 0, i;
if(top < 0)
printf("\n\n No item, stack is empty\n");
else
{
printf("\n\n ITEM\n");
printf(" ------------------\n");
for(i = 0; i <= top; i++)
{
printf(" %-20s\n", item[i]);
count++;
if(count % 20 == 0) getch();
}
printf(" ------------------\n");
printf(" Total item: %d\n", count);
getch();
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?