Stack的简单应用

栈(Stack)的简单应用:

构建Stack,接口方法有push(), pop(), peek(), isEmpty()等,使用LinkedList来创建Stack,如下:

class Stack<T> {
	private LinkedList<T> list = new LinkedList<T>();
	public void push(T elem) {
		list.addFirst(elem);
	}
	
	public T pop() {
		return list.removeFirst();
	}
	
	public T peek() {
		return list.getFirst();
	}
	
	public boolean isEmpty() {
		return list.isEmpty();
	}
	
	public String toString() {
		return list.toString();
	}
}

以字符串简单测试下:

public class stackTest {
	static public void main(String[] args) {
		boolean bPushElem = false;
		Stack<String> stack1 = new Stack<String>();
		String originStr = "+U+n+c---+e+r+t---+a-+i-+n+t+y---+~-+r+u--+l+e+s";
		System.out.println(originStr);
		
		for (String s: originStr.split("")) {	
			if (s.equals("+")) {
				bPushElem = true;
				continue;
			} else if(s.equals("-")) {
				stack1.pop();
				System.out.println(stack1);
			} else if (s.equals(" ")) {
				continue;
			} else {
				if (bPushElem) {
					stack1.push(s);
					System.out.println(stack1);
				}
				bPushElem = false;
			}
		}
		System.out.println(stack1);
	}
}


评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值