java数据结构栈的使用(顺序栈和链栈)
java数据结构出栈和入栈(基于数组的顺序栈和基于单链表的链栈)
package com.stack;
public class MyStack {
private int[] array;
private int count;//元素个数
private int size;//数组大小
public MyStack(int n){
this.count = 0;
this.size = n;
this.array = new int[n];
}
public Boolean push(int data){
if(count == size) return false;
array[count] = data;
++count;
共有 0 条评论