摘要: 严老师书中,第三章栈和队列的一个例子。显示出结构化思想的强大…… /* algo3-12.c 银行业务模拟。实现算法3.6、3.7的程序 *//* c1.h (程序名) */#include <string.h>#include <ctype.h>#include <malloc.h> /* malloc()等 */#include <limits.h> /* INT_MAX等 */#include <stdio.h> /* EOF(=^Z或F6),NULL */#include <stdlib.h> /* atoi() 阅读全文