摘要:
1 // 顺序栈.cpp : 定义控制台应用程序的入口点。 2 // 3 4 #include "stdafx.h"//test1.0--栈表仅限Int类型 5 #include 6 7 #define true 1 8 #define false 0 9 10 typedef struct stack_type 11 { 12 int stack[100];... 阅读全文
posted @ 2016-08-28 17:26
Amoshen
阅读(363)
评论(1)
推荐(0)