数据结构栈-链表的实现

Posted jzdwajue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据结构栈-链表的实现相关的知识,希望对你有一定的参考价值。

链表的实现和数组的实现最大的不同在于链表的插入操作代价要低于数组。只是整体代价还是数组更低,由于链表的构造和连接部分代价事实上非常高。

基本结构

	private Node head = null;

push操作

	public void push(String str) {
		// create a new node and put the str into item
		Node newNode = new Node(str);
		// insert before the new node
		newNode.next = head;
		head = newNode;
	}

pop操作

	public String pop() {

		String popItem; // store the pop String
		
		// if stack is not empty
		if (!isEmpty()) {
			popItem = head.item;
			head = head.next;
			return popItem;
		}

		// empty can not delete
		else {
			System.err.println("Stack is empty");
			return "";
		}
	}

判空

	public boolean isEmpty() {
		return head == null;
	}

求size的操作

	public int size() {
		int size = 0;
		while (head != null) {
			head = head.next;
			size++;
		}
		return size;
	}


以上是关于数据结构栈-链表的实现的主要内容,如果未能解决你的问题,请参考以下文章

数据结构基础学习——栈的概念及代码实现

数组和链表的区别ArrayList和LinkedList的区别使用LinkedList模拟栈和队列

JavaScript数据结构——链表的实现

常见的线性结构

数据结构—栈

数据结构—栈