2012年12月4日

摘要: //************定义类的成员以及函数using System;using System.Collections.Generic;using System.Linq;using System.Windows.Forms;namespace stack_push_pop{ class Stack { private int[] arr; private int sp; private int count; public Stack() { arr = new int[10]; count = 10; sp = 0; } public Stack(int Length) { arr = 阅读全文

posted @ 2012-12-04 21:56 giszcd 阅读(191) 评论(0) 推荐(0)


博客园  ©  2004-2026
浙公网安备 33010602011771号 浙ICP备2021040463号-3