摘要: package com.wyl.linklist; /** * 栈的定义及相关操作 * 用数组实现栈 * 栈是一个线性表,不过进栈和出栈操作在表尾操作 * @author wyl * */ public class MyStack { private static final Integer STACKSIZE = 100; //声明栈的容量 private Int... 阅读全文
posted @ 2017-07-19 11:40 Miss_wang 阅读(1137) 评论(0) 推荐(0) 编辑