IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> 数据结构与算法 -> 栈与队列数组版【Java算法(三)】 -> 正文阅读

[数据结构与算法]栈与队列数组版【Java算法(三)】

目录

1.栈

2.队列

3.测试


项目结构:

1.栈

Stack.java

/*
    栈:用数组实现
 */

public class Stack {

    private int[] array;
    private int top;//栈顶

    public Stack(){
        array = new int[10];
    }

    public Stack(int capacity){//栈的深度
        array = new int[capacity];
    }

    //获取栈的深度
    public int getStackLength(){
        return array.length;
    }

    /**
     * 压入栈中
     * @param element 放入的元素
     */
    public void push(int element){

        //判断是否栈满
        if(top >= array.length){
            //对栈进行扩容
            expandCapacity(top);
        }

        array[top] = element;
        top++;//栈顶加1
    }

    //弹出栈中的数据
    public int pop(){
        return array[--top];
    }

    public void expandCapacity(int top){

        int[] newArray = new int[array.length * 2];

        if(newArray.length > 100){
            throw new IllegalArgumentException("不准栈的深度超过100");
        }

        if(top > 0){
            System.arraycopy(array,0,newArray,0,top);
        }

        array = newArray;
    }

    @Override
    public String toString() {
        String str = "[";
        //只遍历数组当中的元素个数
        for(int i = 0;i < top;i++){
            str += array[i];
            //当不是最后1个元素,需要加逗号
            if(i != top - 1){
                str += ",";
            }
        }
        //最后加一个"]"结尾
        str += "]";
        return str;
    }
}

2.队列

Queue.java

/*
    队列:用数组实现
 */

import java.util.NoSuchElementException;

public class Queue {

    private int font;//队头
    private int rear;//队尾
    private int[] array;

    public Queue(){
        array = new int[10];
    }

    public Queue(int capacity){
        array = new int[capacity];
    }

    //获取队列长度
    public int getQueueLength(){
        return array.length;
    }

    //入队
    public void enQueue(int element){

        //判断队列是否队满
        if((rear + 1) % array.length == font){
            expandCapacity();
        }

        array[rear] = element;//在队尾加上数据
        rear = (rear + 1)%array.length;//添加完数据,队尾往后移
    }

    //出队
    public int outQueue(){

        //判断队列是否为空
        if(font == rear){
            throw new NoSuchElementException("队列为空!无法获取数据!");
        }

        int outElement = array[font];
        font = (font + 1)%array.length;

        return outElement;
    }

    public void expandCapacity(){

        int[] newArray = new int[array.length * 2];

        if(newArray.length > 100){
            throw new IllegalArgumentException("不准栈的深度超过100");
        }

        //将原数组复制到新数组里
        for(int i = 0,n = 0;i < array.length;i++){//队尾可能在数组的中间
            if(i == rear){//因为队尾要留一空
                continue;
            }
            newArray[n++] = array[i];
        }

        array = newArray;
    }

    @Override
    public String toString() {
        String str = "[";
        //只遍历数组当中的元素个数
        for(int i = font;i != rear;i = (i + 1)%array.length){
            str += array[i];
            //当不是最后1个元素,需要加逗号
            if(i != rear - 1){
                str += ",";
            }
        }
        //最后加一个"]"结尾
        str += "]";
        return str;
    }
}

3.测试

TestArray.java
public class TestArray {

    public static void main(String[] args) {

        Queue queue = new Queue(3);

        queue.enQueue(1);
        queue.enQueue(2);
        queue.enQueue(3);
        queue.enQueue(4);
        queue.enQueue(5);

        System.out.println(queue);

        System.out.println("出队:");

        queue.outQueue();
        queue.outQueue();
        queue.outQueue();
        queue.outQueue();
        queue.outQueue();

        System.out.println(queue);
    }
}

?完

  数据结构与算法 最新文章
【力扣106】 从中序与后续遍历序列构造二叉
leetcode 322 零钱兑换
哈希的应用:海量数据处理
动态规划|最短Hamilton路径
华为机试_HJ41 称砝码【中等】【menset】【
【C与数据结构】——寒假提高每日练习Day1
基础算法——堆排序
2023王道数据结构线性表--单链表课后习题部
LeetCode 之 反转链表的一部分
【题解】lintcode必刷50题<有效的括号序列
上一篇文章      下一篇文章      查看所有文章
加:2022-04-01 23:38:43  更:2022-04-01 23:40:28 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2024年11日历 -2024/11/26 9:45:55-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码