广告位联系
返回顶部
分享到

Java深入了解数据结构之栈与队列的介绍

java 来源:互联网 作者:秩名 发布时间:2022-01-27 20:16:45 人浏览
摘要

一,栈 1,概念 在我们软件应用 ,栈这种后进先出数据结构的应用是非常普遍的。比如你用浏 览器上网时不管什么浏览器都有 个后退键,你点击后可以接访问顺序的逆序加载浏览过的

一,栈

1,概念

在我们软件应用 ,栈这种后进先出数据结构的应用是非常普遍的。比如你用浏 览器上网时不管什么浏览器都有 个"后退"键,你点击后可以接访问顺序的逆序加载浏览过的网页。

很多类似的软件,比如 Word Photoshop 等文档或图像编 软件中 都有撤销 )的操作,也是用栈这种方式来实现的,当然不同的软件具体实现会有很大差异,不过原理其实都是一样的。

栈( stack )是限定仅在表尾进行插入和删除的线性表

栈:一种特殊的线性表,其只允许在固定的一端进行插入和删除元素操作。进行数据插入和删除操作的一端称为栈 顶,另一端称为栈底。栈中的数据元素遵守后进先出LIFO(Last In First Out)的原则。

 

2,栈的操作

压栈:栈的插入操作叫做进栈/压栈/入栈,入数据在栈顶。

出栈:栈的删除操作叫做出栈。出数据在栈顶。

 

3,栈的实现

 

①入栈

1

2

3

4

5

6

7

8

9

public static void main(String[] args) {

       Stack stack = new Stack<>();

       stack.push(1);

       stack.push(2);

       stack.push(3);

       stack.push(4);

       int ret = stack.push(4);

       System.out.println(ret);

   }

 

②出栈

1

2

3

4

5

6

7

8

9

10

public static void main(String[] args) {

      Stack stack = new Stack<>();

      stack.push(1);

      stack.push(2);

      stack.push(3);

      int ret1 = stack.pop();

      int ret2 = stack.pop();

      System.out.println(ret1);

      System.out.println(ret2);

  }

 

③获取栈顶元素

1

2

3

4

5

6

7

8

9

10

11

12

public static void main(String[] args) {

       Stack stack = new Stack<>();

       stack.push(1);

       stack.push(2);

       stack.push(3);

       int ret1 = stack.pop();

       int ret2 = stack.pop();

       int ret3 = stack.peek();

       System.out.println(ret1);

       System.out.println(ret2);

       System.out.println(ret3);

   }

 

④判断栈是否为空

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

public static void main(String[] args) {

      Stack stack = new Stack<>();

      stack.push(1);

      stack.push(2);

      stack.push(3);

      int ret1 = stack.pop();

      int ret2 = stack.pop();

      int ret3 = stack.peek();

      System.out.println(ret1);

      System.out.println(ret2);

      System.out.println(ret3);

      stack.pop();

      boolean flag = stack.empty();

      System.out.println(flag);

  }

 

 4,实现mystack

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

public class MyStack {

    private T[] elem;//数组

    private int top;//当前可以存放数据元素的下标-》栈顶指针

  

    public MyStack() {

        this.elem = (T[])new Object[10];

    }

  

    /**

     * 入栈操作

     * @param item 入栈的元素

     */

    public void push(T item) {

        //1、判断当前栈是否是满的

        if(isFull()){

            this.elem = Arrays.copyOf(this.elem,2*this.elem.length);

        }

        //2、elem[top] = item  top++;

        this.elem[this.top++] = item;

    }

  

    public boolean isFull(){

        return this.elem.length == this.top;

    }

  

    /**

     * 出栈

     * @return 出栈的元素

     */

    public T pop() {

        if(empty()) {

            throw new UnsupportedOperationException("栈为空!");

        }

        T ret = this.elem[this.top-1];

        this.top--;//真正的改变了top的值

        return ret;

    }

  

    /**

     * 得到栈顶元素,但是不删除

     * @return

     */

    public T peek() {

        if(empty()) {

            throw new UnsupportedOperationException("栈为空!");

        }

        //this.top--;//真正的改变了top的值

        return this.elem[this.top-1];

    }

    public boolean empty(){

        return this.top == 0;

    }

}

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

public static void main(String[] args) {

        MyStack myStack = new MyStack<>();

        myStack.push(1);

        myStack.push(2);

        myStack.push(3);

        System.out.println(myStack.peek());

        System.out.println(myStack.pop());

        System.out.println(myStack.pop());

        System.out.println(myStack.pop());

        System.out.println(myStack.empty());

        System.out.println("============================");

        MyStack myStack2 = new MyStack<>();

        myStack2.push("hello");

        myStack2.push("word");

        myStack2.push("thank");

        System.out.println(myStack2.peek());

        System.out.println(myStack2.pop());

        System.out.println(myStack2.pop());

        System.out.println(myStack2.pop());

        System.out.println(myStack2.empty());

  

    }

 

二,队列

1,概念

像移动、联通、电信等客服电话,客服人员与客户相比总是少数,在所有的客服人员都占线的情况下,客户会被要求等待,直到有某个客服人员空下来,才能让最先等待的客户接通电话。这里也是将所有当前拨打客服电话的客户进行了排队处理。

操作系统和客服系统中,都是应用了种数据结构来实现刚才提到的先进先出的排队功能,这就是队列。

队列(queue) 是只允许在一端进行插入操作,而在另一端进行删除操作的线性表

队列:只允许在一端进行插入数据操作,在另一端进行删除数据操作的特殊线性表,队列具有先进先出FIFO(First In First Out) 入队列:进行插入操作的一端称为队尾(Tail/Rear) 出队列:进行删除操作的一端称为队头 (Head/Front)

 

2,队列的实现

 

①入队

1

2

3

4

5

6

7

8

public static void main(String[] args) {

       Deque queue = new LinkedList<>();

       queue.offer(1);

       queue.offer(2);

       queue.offer(3);

       queue.offer(4);

        

   }

 

②出队

1

2

3

4

5

6

7

8

9

10

public static void main(String[] args) {

      Deque queue = new LinkedList<>();

      queue.offer(1);

      queue.offer(2);

      queue.offer(3);

      queue.offer(4);

      System.out.println(queue.poll());

      System.out.println(queue.poll());

 

  }

 

③获取队首元素

1

2

3

4

5

6

7

8

9

10

11

public static void main(String[] args) {

        Deque queue = new LinkedList<>();

        queue.offer(1);

        queue.offer(2);

        queue.offer(3);

        queue.offer(4);

        System.out.println(queue.poll());

        System.out.println(queue.poll());

        System.out.println("-----------------");

        System.out.println(queue.peek());

    }

 

3,实现myqueue

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24

25

26

27

28

29

30

31

32

33

34

35

36

37

38

39

40

41

42

43

44

45

46

47

48

49

50

51

52

53

54

55

56

57

58

class Node {

    private int val;

    private Node next;

    public int getVal() {

        return val;

    }

    public void setVal(int val) {

        this.val = val;

    }

    public Node getNext() {

        return next;

    }

    public void setNext(Node next) {

        this.next = next;

    }

    public Node(int val) {

        this.val = val;

    }

}

public class MyQueue {

    private Node first;

    private Node last;

    //入队

    public void offer(int val) {

        //尾插法  需要判断是不是第一次插入

        Node node = new Node(val);

        if(this.first == null) {

            this.first = node;

            this.last = node;

        }else {

            this.last.setNext(node);//last.next = node;

            this.last = node;

        }

    }

    //出队

    public int poll() {

        //1判断是否为空的

        if(isEmpty()) {

            throw new UnsupportedOperationException("队列为空!");

        }

        //this.first = this.first.next;

        int ret = this.first.getVal();

        this.first = this.first.getNext();

        return ret;

    }

    //得到队头元素但是不删除

    public int peek() {

        //不要移动first

        if(isEmpty()) {

            throw new UnsupportedOperationException("队列为空!");

        }

        return this.first.getVal();

    }

    //队列是否为空

    public boolean isEmpty() {

        return this.first == null;

    }

}

1

2

3

4

5

6

7

8

9

10

11

12

public static void main(String[] args) {

       MyQueue myQueue = new MyQueue();

       myQueue.offer(1);

       myQueue.offer(2);

       myQueue.offer(3);

       System.out.println(myQueue.peek());

       System.out.println(myQueue.poll());

       System.out.println(myQueue.poll());

       System.out.println(myQueue.poll());

       System.out.println(myQueue.isEmpty());

       

   }


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。
原文链接 : https://blog.csdn.net/qq_50156012/article/details/121595465
相关文章
  • SpringBoot自定义错误处理逻辑介绍

    SpringBoot自定义错误处理逻辑介绍
    1. 自定义错误页面 将自定义错误页面放在 templates 的 error 文件夹下,SpringBoot 精确匹配错误信息,使用 4xx.html 或者 5xx.html 页面可以打印错误
  • Java实现手写一个线程池的代码

    Java实现手写一个线程池的代码
    线程池技术想必大家都不陌生把,相信在平时的工作中没有少用,而且这也是面试频率非常高的一个知识点,那么大家知道它的实现原理和
  • Java实现断点续传功能的代码

    Java实现断点续传功能的代码
    题目实现:网络资源的断点续传功能。 二、解题思路 获取要下载的资源网址 显示网络资源的大小 上次读取到的字节位置以及未读取的字节
  • 你可知HashMap为什么是线程不安全的
    HashMap 的线程不安全 HashMap 的线程不安全主要体现在下面两个方面 在 jdk 1.7 中,当并发执行扩容操作时会造成环形链和数据丢失的情况 在
  • ArrayList的动态扩容机制的介绍

    ArrayList的动态扩容机制的介绍
    对于 ArrayList 的动态扩容机制想必大家都听说过,之前的文章中也谈到过,不过由于时间久远,早已忘却。 所以利用这篇文章做做笔记,加
  • JVM基础之字节码的增强技术介绍

    JVM基础之字节码的增强技术介绍
    字节码增强技术 在上文中,着重介绍了字节码的结构,这为我们了解字节码增强技术的实现打下了基础。字节码增强技术就是一类对现有字
  • Java中的字节码增强技术

    Java中的字节码增强技术
    1.字节码增强技术 字节码增强技术就是一类对现有字节码进行修改或者动态生成全新字节码文件的技术。 参考地址 2.常见技术 技术分类 类
  • Redis BloomFilter布隆过滤器原理与实现

    Redis BloomFilter布隆过滤器原理与实现
    Bloom Filter 概念 布隆过滤器(英语:Bloom Filter)是1970年由一个叫布隆的小伙子提出的。它实际上是一个很长的二进制向量和一系列随机映射
  • Java C++算法题解leetcode801使序列递增的最小交换次

    Java C++算法题解leetcode801使序列递增的最小交换次
    题目要求 思路:状态机DP 实现一:状态机 Java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 class Solution { public int minSwap(int[] nums1, int[] nums2) { int n
  • Mybatis结果集映射与生命周期介绍

    Mybatis结果集映射与生命周期介绍
    一、ResultMap结果集映射 1、设计思想 对简单的语句做到零配置,对于复杂一点的语句,只需要描述语句之间的关系就行了 2、resultMap的应用场
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计