日撸 Java 三百行学习笔记day14

第 14 天: 栈

栈是一种只允许在一端进行插入或删除的线性表。

1、栈的操作端通常被称为栈顶,另一端被称为栈底。
2、栈的插入操作称为进栈(压栈|push);栈删除操作称为出栈(弹栈|pop)。

特点

  栈就像一个杯子,我们只能从杯口放和取,所以栈中的元素是“先进后出”的特点。

存储结构

  顺序存储的栈称为顺序栈;链式存储的栈称为链式栈。

package day10;

public class Stack {
	public static class CharStack {
		/**
		 * The depth.
		 */
		public static final int MAX_DEPTH = 10;

		/**
		 * The actual depth.
		 */
		int depth;

		/**
		 * The data
		 */
		char[] data;

		/**
		 *********************
		 * Construct an empty char stack.
		 *********************
		 */
		public CharStack() {
			depth = 0;
			data = new char[MAX_DEPTH];
		}// Of the first constructor

		/**
		 *********************
		 * Overrides the method claimed in Object, the superclass of any class.
		 *********************
		 */
		public String toString() {
			String resultString = "";
			for (int i = 0; i < depth; i++) {
				resultString += data[i];
			} // Of for i

			return resultString;
		}// Of toString

		/**
		 *********************
		 * Push an element.
		 * 
		 * @param paraChar The given char.
		 * @return Success or not.
		 *********************
		 */
		public boolean push(char paraChar) {
			if (depth == MAX_DEPTH) {
				System.out.println("Stack full.");
				return false;
			} // Of if

			data[depth] = paraChar;
			depth++;

			return true;
		}// Of push

		/**
		 *********************
		 * Pop an element.
		 * 
		 * @return The popped char.
		 *********************
		 */
		public char pop() {
			if (depth == 0) {
				System.out.println("Nothing to pop.");
				return '\0';
			} // Of if

			char resultChar = data[depth - 1];
			depth--;

			return resultChar;
		}// Of pop

		/**
		 *********************
		 * The entrance of the program.
		 * 
		 * @param args Not used now.
		 *********************
		 */
		public static void main(String args[]) {
			CharStack tempStack = new CharStack();

			for (char ch = 'a'; ch < 'm'; ch++) {
				tempStack.push(ch);
				System.out.println("The current stack is: " + tempStack);
			} // Of for ch

			char tempChar;
			for (int i = 0; i < 12; i++) {
				tempChar = tempStack.pop();
				System.out.println("Poped: " + tempChar);
				System.out.println("The current stack is: " + tempStack);
			} // Of for i
		}// Of main
		
	}// Of CharStack
	


}

得出结果:

 

今天的学习与之前对链表的学习有很多相似之处,比如构造的结构方面,但对于出栈入栈还是有它的不同之处的,都是在栈顶进行操作。对于出栈和进栈包括depth的指向我其实还有点疑问,然后根据正确代码我思考了一下,下面用我画的图例表达(可能不太对)

 对于进栈有:;                                                      

对于出栈有:

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值