3 栈的数据结构
package com.wwj.cn; public class SqStack { private final int MAXSIZE = 10; int[] data = new int[MAXSIZE]; int top;// 栈顶指针 }
posted on 2017-05-25 22:24 WenjieWangFlyToWorld 阅读(127) 评论(0) 收藏 举报
package com.wwj.cn; public class SqStack { private final int MAXSIZE = 10; int[] data = new int[MAXSIZE]; int top;// 栈顶指针 }
posted on 2017-05-25 22:24 WenjieWangFlyToWorld 阅读(127) 评论(0) 收藏 举报