摘要: using System; using System.Collections; using System.Collections.Generic; public class Stack : IEnumerable { //数组,索引 T[] items; int idx; public Stack() { idx = 0; i... 阅读全文
posted @ 2008-04-06 21:47 roboth 阅读(288) 评论(2) 推荐(0)