WenJieWangFlyToWorld

导航

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  阅读(121)  评论(0编辑  收藏  举报