欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java 实现栈的三种方式

程序员文章站 2022-03-10 15:27:13
栈:lifo(后进先出),自己实现一个栈,要求这个栈具有push()、pop()(返回栈顶元素并出栈)、peek() (返回栈顶元素不出栈)、isempty()这些基本的方法。一、采用数组实现栈提示:...

栈:lifo(后进先出),自己实现一个栈,要求这个栈具有push()、pop()(返回栈顶元素并出栈)、peek() (返回栈顶元素不出栈)、isempty()这些基本的方法。

一、采用数组实现栈

提示:每次入栈之前先判断栈的容量是否够用,如果不够用就用arrays.copyof()进行扩容

import java.util.arrays;
/**
 * 数组实现栈
 * @param <t>
 */
class mystack1<t> {
  //实现栈的数组
  private object[] stack;
  //数组大小
  private int size;
 
  mystack1() {
    stack = new object[10];//初始容量为10
  }
 
  //判断是否为空
  public boolean isempty() {
    return size == 0;
  }
 
  //返回栈顶元素
  public t peek() {
    t t = null;
    if (size > 0)
      t = (t) stack[size - 1];
    return t;
  }
  
  public void push(t t) {
    expandcapacity(size + 1);
    stack[size] = t;
    size++;
  }
 
  //出栈
  public t pop() {
    t t = peek();
    if (size > 0) {
      stack[size - 1] = null;
      size--;
    }
    return t;
  }
 
  //扩大容量
  public void expandcapacity(int size) {
    int len = stack.length;
    if (size > len) {
      size = size * 3 / 2 + 1;//每次扩大50%
      stack = arrays.copyof(stack, size);
    }
  }
}
 
public class arraystack {
  public static void main(string[] args) {
    mystack1<string> stack = new mystack1<>();
    system.out.println(stack.peek());
    system.out.println(stack.isempty());
    stack.push("java");
    stack.push("is");
    stack.push("beautiful");
    stack.push("language");
    system.out.println(stack.pop());
    system.out.println(stack.isempty());
    system.out.println(stack.peek());
  }
}

二、采用链表实现栈

/**
 * 链表实现栈
 *
 * @param <t>
 */
class mystack2<t> {
  //定义链表
  class node<t> {
    private t t;
    private node next;
  }
 
  private node<t> head;
 
  //构造函数初始化头指针
  mystack2() {
    head = null;
  }
 
  //入栈
  public void push(t t) {
    if (t == null) {
      throw new nullpointerexception("参数不能为空");
    }
    if (head == null) {
      head = new node<t>();
      head.t = t;
      head.next = null;
    } else {
      node<t> temp = head;
      head = new node<>();
      head.t = t;
      head.next = temp;
    }
  }
 
  //出栈
  public t pop() {
    t t = head.t;
    head = head.next;
    return t;
  }
 
  //栈顶元素
  public t peek() {
    t t = head.t;
    return t;
  }
 
  //栈空
  public boolean isempty() {
    if (head == null)
      return true;
    else
      return false;
  }
}
 
public class linkstack {
  public static void main(string[] args) {
    mystack2 stack = new mystack2();
    system.out.println(stack.isempty());
    stack.push("java");
    stack.push("is");
    stack.push("beautiful");
    system.out.println(stack.peek());
    system.out.println(stack.peek());
    system.out.println(stack.pop());
    system.out.println(stack.pop());
    system.out.println(stack.isempty());
    system.out.println(stack.pop());
    system.out.println(stack.isempty());
  }
}

三、采用linkedlist实现栈

push-----addfirst()
pop-------removefirst()
peek-----getfirst()
isempty-isempty()

import java.util.linkedlist;
 
/**
 * linkedlist实现栈
 *
 * @param <t>
 */
class liststack<t> {
  private linkedlist<t> ll = new linkedlist<>();
 
  //入栈
  public void push(t t) {
    ll.addfirst(t);
  }
 
  //出栈
  public t pop() {
    return ll.removefirst();
  }
 
  //栈顶元素
  public t peek() {
    t t = null;
    //直接取元素会报异常,需要先判断是否为空
    if (!ll.isempty())
      t = ll.getfirst();
    return t;
  }
 
  //栈空
  public boolean isempty() {
    return ll.isempty();
  }
}
 
public class linkedliststack {
  public static void main(string[] args) {
    liststack<string> stack = new liststack();
    system.out.println(stack.isempty());
    system.out.println(stack.peek());
    stack.push("java");
    stack.push("is");
    stack.push("beautiful");
    system.out.println(stack.peek());
    system.out.println(stack.pop());
    system.out.println(stack.isempty());
    system.out.println(stack.peek());
  }
}

接着分享java使用两种方式实现简单栈

两种栈的不同点

基于数组实现的栈需要指定初始容量,栈的大小是有限的(可以利用动态扩容改变其大小),基于链表实现的栈则是没有大小限制的。

基于数组实现栈

数组实现栈的主要方法就是标识栈顶在数组中的位置,初始化时可以将栈顶指向为-1的虚拟位置,元素入栈则栈顶元素加1,出栈则栈顶元素减一,栈的元素容量为栈顶指针当前位置加1,且不能超过底层数组的最大容量。

/**
 * 以数组为底层实现栈
 * @param <t>
 */
public class mystackofarray<t> {
  private object[] data;//底层数组
  private int maxsize = 0;//栈存储的最大元素个数
  private int top = -1;//初始时栈顶指针指向-1

  //默认初始化容量为10的栈
  public mystackofarray(){
    this(10);
  }
  
  //初始化指定大小的栈
  public mystackofarray(int initialsize){ 
    if(initialsize >= 0){
      this.maxsize = initialsize;
      data = new object[initialsize];
      top = -1;
    }else{
      throw new runtimeexception("初始化容量不能小于0" + initialsize);
    }
  }

  //入栈,栈顶指针先加一再填入数据
  public boolean push(t element){
    if(top == maxsize - 1){
      throw new runtimeexception("当前栈已满,无法继续添加元素");
    }else{
      data[++top] = element;
      return true;
    }
  }

  //查看栈顶元素
  public t peek(){
    if(top == -1)
      throw new runtimeexception("栈已空");
    return (t) data[top];
  }

  //出栈,先弹出元素再将栈顶指针减一
  public t pop(){
    if(top == -1)
      throw new runtimeexception("栈已空");
    return (t) data[top--];
  }

  //判断当前栈是否为空,只需判断栈顶指针是否等于-1即可
  public boolean isempty(){
    return top == -1;
  }

  public int search(t element){
    int i = top;
    while (top != -1){
      if(peek() != element)
        top--;
      else
        break;
    }
    int result = top + 1;
    top = i;
    return top;
  }

  public static void main(string[] args) {
    mystackofarray<integer> mystackofarray = new mystackofarray<>(10);
    for(int i = 0; i < 10; i++){
      mystackofarray.push(i);
    }
    system.out.println("测试是否执行");
    for(int i = 0; i < 10; i++){
      system.out.println(mystackofarray.pop());
    }
  }
}

基于链表实现栈

基于链表实现栈只要注意控制栈顶指针的指向即可。

/**
 * 链表方式实现栈
 * @param <e>
 */
public class mystack<e> {
  /**
   * 内部节点类
   * @param <e>
   */
  private class node<e>{
    e e;
    node<e> next;

    public node(){}

    public node(e e, node<e> next){
      this.e = e;
      this.next = next;
    }
  }

  private node<e> top;//栈顶指针
  private int size;//栈容量

  public mystack(){
    top = null;
  }

  //入栈,将新节点的next指针指向当前top指针,随后将top指针指向新节点
  public boolean push(e e){
    top = new node(e, top);
    size++;
    return true;
  }

  //判断栈是否为空
  public boolean isempty(){
    return size == 0;
  }

  //返回栈顶节点
  public node<e> peek(){
    if(isempty())
      throw new runtimeexception("栈为空");
    return top;
  }

  //出栈,先利用临时节点保存要弹出的节点值,再将top指针指向它的下一个节点,并将弹出的节点的next指针赋空即可
  public node<e> pop(){
    if(isempty())
      throw new runtimeexception("栈为空");
    node<e> value = top;
    top = top.next;
    value.next = null;
    size--;
    return value;
  }

  //返回当前栈的大小
  public int length(){
    return size;
  }

  public static void main(string[] args) {
    mystack<integer> mystack = new mystack<>();
    for(int i = 0; i < 10; i++){
      mystack.push(i);
    }
    for(int i = 0; i < 10; i++){
      system.out.println(mystack.pop().e);
    }
  }
}

到此这篇关于java 实现栈的三种方式的文章就介绍到这了,更多相关java 实现栈内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!

相关标签: Java 实现栈