首页 > 代码库 > 【数据结构】栈-链表的实现
【数据结构】栈-链表的实现
链表的实现和数组的实现最大的不同在于链表的插入操作代价要低于数组,不过总体代价还是数组更低,因为链表的构造和连接部分代价其实很高。
基本结构
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; }
【数据结构】栈-链表的实现
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。