All Downloads are FREE. Search and download functionalities are using the official Maven repository.

shz.core.stack.a.BArrayStack Maven / Gradle / Ivy

There is a newer version: 10.3.1
Show newest version
package shz.core.stack.a;

import java.util.Arrays;

/**
 * 元素类型为byte基于动态数组的栈
 * 

* 24+n(n为元素个数)=es *

* B=48+n+对齐填充 */ public class BArrayStack extends ArrayStack { protected byte[] es; protected BArrayStack(int capacity) { super(capacity); es = new byte[capacity]; } public static BArrayStack of(int capacity) { return new BArrayStack(capacity); } public static BArrayStack of() { return of(DEFAULT_CAPACITY); } @Override protected final Byte get(int i) { return es[i]; } @Override protected final void resize(int capacity) { this.capacity = capacity; es = Arrays.copyOf(es, capacity); } @Override protected final void setNull(int i) { es[i] = 0; } public final void push(byte e) { beforePush(); es[size++] = e; } public final byte pop() { byte e = es[--size]; afterPop(); return e; } public final byte peek() { return es[size - 1]; } public final void reverse() { if (size == 0) return; //栈底移至栈顶 bottomToTop(); byte top = es[size - 1]; pop(); reverse(); push(top); } private void bottomToTop() { if (size == 0) return; byte top1 = es[size - 1]; pop(); if (size == 0) push(top1); else { bottomToTop(); byte top2 = es[size - 1]; pop(); //交换栈顶 与 子栈顶 push(top1); push(top2); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy