文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Java怎么使用跳转结构实现队列和栈

2023-07-06 02:02

关注

本篇内容介绍了“Java怎么使用跳转结构实现队列和栈”的有关知识,在实际案例的操作过程中,不少人都会遇到这样的困境,接下来就让小编带领大家学习一下如何处理这些情况吧!希望大家仔细阅读,能够学有所成!

队列

跳转结构结点

public static class Node<T> {    public T value;    public Node<T> next;    public Node(T value) {        this.value = value;    }    @Override    public String toString() {        ArrayList<T> nums = new ArrayList<>();        Node<T> node = this;        while (node != null) {            nums.add(node.value);            node = node.next;        }        return nums.toString();    }}
实现队列
public static class MyQueue<T> {    private Node<T> head;    private Node<T> tail;    private int size;    public MyQueue() {        head = null;        tail = null;        size = 0;    }    // 插入一个元素    public void offer(T t) {        Node<T> node = new Node<>(t);        if (head == null) {            head = node;        } else {            tail.next = node;        }        tail = node;        size++;    }    // 弹出一个元素    public T poll() {        T ans = null;        if (head != null) {            ans = head.value;            head = head.next;            size--;        }        if (head == null) {            tail = null;        }        return ans;    }//  查看队首元素    public T peek() {        T ans = null;        if (head != null) {            ans = head.value;        }        return ans;    }    //检查 队列是否为空    public Boolean isEmpty() {        return size == 0;    }    // 查看队列的长度    public int size() {        return size;    }}
测试队列
public static void main(String[] args) {    MyQueue<Integer> myQueue = new MyQueue<>();    Queue<Integer> test = new LinkedList<>();    int testTime = 5000000;    int maxValue = 200000000;    System.out.println("测试开始!");    for (int i = 0; i < testTime; i++) {        if (myQueue.isEmpty() != test.isEmpty()) {            System.out.println("Oops!");        }        if (myQueue.size() != test.size()) {            System.out.println("Oops!");        }        double decide = Math.random();        if (decide < 0.33) {            int num = (int) (Math.random() * maxValue);            myQueue.offer(num);            test.offer(num);        } else if (decide < 0.66) {            if (!myQueue.isEmpty()) {                Integer num1 = myQueue.poll();                Integer num2 = test.poll();                if (!num1.equals(num2)) {                    System.out.println("Oops!");                }            }        } else {            if (!myQueue.isEmpty()) {                Integer num1 = myQueue.peek();                Integer num2 = test.peek();                if (!num1.equals(num2)) {                    System.out.println("Oops!");                }            }        }    }    if (myQueue.size() != test.size()) {        System.out.println("Oops!");    }    while (!myQueue.isEmpty()) {        Integer num1 = myQueue.poll();        Integer num2 = test.poll();        if (!num1.equals(num2)) {            System.out.println("Oops!");        }    }    System.out.println("测试结束!");}

实现栈
public static class MyStack<T> {    private Node<T> head;    private int size;    public MyStack() {        head = null;        size = 0;    }    //检查 栈是否为空    public Boolean isEmpty() {        return size == 0;    }    // 查看栈的长度    public int size() {        return size;    }    // 插入一个元素    public void push(T t) {        Node<T> node = new Node<>(t);        if (head != null) {            node.next = head;        }        head = node;        size++;    }    public T pop() {        T ans = null;        if (head != null) {            ans = head.value;            head = head.next;            size--;        }        return ans;    }    //  查看栈顶元素    public T peek() {        T ans = null;        if (head != null) {            ans = head.value;        }        return ans;    }}
测试代码
public static void main(String[] args) {    MyStack<Integer> myStack = new MyStack<>();    Stack<Integer> test = new Stack<>();    int testTime = 5000000;    int maxValue = 200000000;    System.out.println("测试开始!");    for (int i = 0; i < testTime; i++) {        if (myStack.isEmpty() != test.isEmpty()) {            System.out.println("Oops!");        }        if (myStack.size() != test.size()) {            System.out.println("Oops!");        }        double decide = Math.random();        if (decide < 0.33) {            int num = (int) (Math.random() * maxValue);            myStack.push(num);            test.push(num);        } else if (decide < 0.66) {            if (!myStack.isEmpty()) {                int num1 = myStack.pop();                int num2 = test.pop();                if (num1 != num2) {                    System.out.println("Oops!");                }            }        } else {            if (!myStack.isEmpty()) {                int num1 = myStack.peek();                int num2 = test.peek();                if (num1 != num2) {                    System.out.println("Oops!");                }            }        }    }    if (myStack.size() != test.size()) {        System.out.println("Oops!");    }    while (!myStack.isEmpty()) {        int num1 = myStack.pop();        int num2 = test.pop();        if (num1 != num2) {            System.out.println("Oops!");        }    }    System.out.println("测试结束!");}

“Java怎么使用跳转结构实现队列和栈”的内容就介绍到这里了,感谢大家的阅读。如果想了解更多行业相关的知识可以关注编程网网站,小编将为大家输出更多高质量的实用文章!

阅读原文内容投诉

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     801人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     348人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     311人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     432人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     220人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
位置:首页-资讯-后端开发
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯