当前位置:   article > 正文

列表、栈、队列_list队列和列

list队列和列

列表(List)

介绍

一系列有序元素的集合。列表中的元素可以是任意类型,允许重复。

  1. 可通过索引定位、访问列表中的(单个)元素,还可使用切片(slice)操作一次性访问多个元素,从而实现对列表的复杂操作。
  2. 通过对象引用来操作列表,例如:使用append()、insert()、remove()等方法实现动态地插入或删除元素(使用频繁)

了解:Java中提供了多种实现列表的类,如:

  1. ArrayList:基于动态数组实现的列表,支持快速随机访问和插入/删除操作(需要移动大量元素--在开头或中间插入/删除时,被插入/删除位置之后的所有元素都要往前/后移位)。
  2. LinkedList:基于链表实现的列表,支持快速插入/删除(较高效--只需要修改指针即可),不支持随机访问。
  3. Vector:与ArrayList类似,但是线程安全。
  4. Stack(先进后出(FILO)):基于Vector实现的栈。与LinkedList相比,Vector在访问元素时更高效--根据索引值直接获取元素,不需要遍历整个列表。

综上所述,ArrayList适合需要频繁随机访问元素,但不要求线程安全,并且数据量相对较小的场景。LinkedList适合频繁进行插入/删除操作而不需要随机访问元素,常出现在需要处理大量数据的场景。Vector适合需要频繁随机访问元素,并要求线程安全的同时具备动态扩容能力的场景,插入和删除操作少。Stack适合需要按照先进后出原则进行操作的场景,对于多线程并发场景应当使用线程安全的Stack实现类,如ConcurrentLinkedStack。

预备知识

1.包装类(Wrapper Class):

Java中的基本数据类型(int、double、boolean等)不能直接添加到列表中(列表只能包含对象类型),为了解决这个问题,Java提供了对应的包装类(Integer、Double、Boolean等),实现了将基本数据类型转化为对象类型,使得基本数据类型也能被添加至列表。

2.集合(Collection):

一种用于存储对象的容器,并提供一些常用的操作方法,如添加、删除、查找、遍历、排序等。其中,List接口用于存储有序元素的列表。

常用操作

1.初始化列表

  1. /* 初始化列表 */
  2. List<Integer> list1=new ArrayList<>();
  3. Integer[] nums=new Integer[] {1,2,3,4,5};
  4. List<Integer> list=new ArrayList<>(Arrays.asList(nums));

2.访问与更新元素

  1. /* 访问与更新元素 */
  2. int num=list.get(1);
  3. list.set(1,0);
 

3.在列表中添加、删除元素

  1. /* 在列表中添加、删除元素 */
  2. list.clear();/* 清空列表 */
  3. list.add(element);/* 向列表中添加单个个元素 */
  4. list.add(index, element);/* 指定元素位置进行添加 */
  5. /* 举例:list.add(3,6); //在第4个元素的位置插入6 */
  6. list.remove(index);/* 删除指定位置 */
  7. list.remove(element);/* 删除指定元素 */
  8. /* 使用注意看看大佬这篇博客: https://blog.csdn.net/qq_36412715/article/details/84071160 */
 

4.遍历列表

  1. /* 遍历列表 */
  2. for(int n:list){
  3. n
  4. }
 

5.拼接两个列表

  1. /* 拼接两个列表 */
  2. List<Integer> list1=new ArrayList<>(Arrays.asList(new Integer[] {1,2,3,4,5}));
  3. list2.addAll(list1);
 

6.排序列表

  1. /* 排序列表 */
  2. Collections.sort();/* 对列表进行升序排序 */
 

简易实现

  1. /* 简易实现 */
  2. class MyList{
  3. private int[] nums;
  4. private int capa=10;
  5. private int size=0;
  6. private int ratio=2;
  7. public MyList(){}
  8. size;
  9. public nums[index]
  10. nums[index]=s;
  11. copyOf
  12. }

  1. public class MyArrayList<E> {
  2. private Object[] elements; // 用数组实现列表
  3. private int size; // 列表大小
  4. // 构造方法
  5. public MyArrayList(int initialCapacity) {
  6. elements = new Object[initialCapacity];
  7. size = 0;
  8. }
  9. // 默认构造方法
  10. public MyArrayList() {
  11. this(10);
  12. }
  13. // 添加元素到列表末尾
  14. public void add(E e) {
  15. if (size == elements.length) {
  16. resize();
  17. }
  18. elements[size] = e;
  19. size++;
  20. }
  21. // 在指定位置添加元素
  22. public void add(int index, E e) {
  23. if (index < 0 || index > size) {
  24. throw new IndexOutOfBoundsException();
  25. }
  26. if (size == elements.length) {
  27. resize();
  28. }
  29. System.arraycopy(elements, index, elements, index + 1, size - index);
  30. elements[index] = e;
  31. size++;
  32. }
  33. // 获取指定位置的元素
  34. @SuppressWarnings("unchecked")
  35. public E get(int index) {
  36. if (index < 0 || index >= size) {
  37. throw new IndexOutOfBoundsException();
  38. }
  39. return (E) elements[index];
  40. }
  41. // 删除指定位置的元素
  42. @SuppressWarnings("unchecked")
  43. public E remove(int index) {
  44. if (index < 0 || index >= size) {
  45. throw new IndexOutOfBoundsException();
  46. }
  47. E e = (E) elements[index];
  48. System.arraycopy(elements, index + 1, elements, index, size - index - 1);
  49. elements[size - 1] = null;
  50. size--;
  51. return e;
  52. }
  53. // 删除指定元素
  54. public boolean remove(E e) {
  55. for (int i = 0; i < size; i++) {
  56. if (elements[i].equals(e)) {
  57. remove(i);
  58. return true;
  59. }
  60. }
  61. return false;
  62. }
  63. // 修改指定位置的元素
  64. public void set(int index, E e) {
  65. if (index < 0 || index >= size) {
  66. throw new IndexOutOfBoundsException();
  67. }
  68. elements[index] = e;
  69. }
  70. // 获取列表大小
  71. public int size() {
  72. return size;
  73. }
  74. // 判断列表是否为空
  75. public boolean isEmpty() {
  76. return size == 0;
  77. }
  78. // 判断列表中是否包含指定元素
  79. public boolean contains(E e) {
  80. for (int i = 0; i < size; i++) {
  81. if (elements[i].equals(e)) {
  82. return true;
  83. }
  84. }
  85. return false;
  86. }
  87. // 清空列表
  88. public void clear() {
  89. for (int i = 0; i < size; i++) {
  90. elements[i] = null;
  91. }
  92. size = 0;
  93. }
  94. // 扩容
  95. private void resize() {
  96. Object[] newElements = new Object[elements.length * 2];
  97. System.arraycopy(elements, 0, newElements, 0, size);
  98. elements = newElements;
  99. }
  100. }




栈(Stack)

介绍

  1. 栈主要用于实现函数调用、表达式求值等需要倒序处理的场景。
  2. 具有先进后出(FILO)的特性,如下图解:

常用操作

方法

描述

时间复杂度

push()

压入栈顶元素

O(1)

pop()

栈顶元素出栈

O(1)

peek()

访问栈顶元素

O(1)

  1. /* 常用操作 */
  2. Stack<Integer> stack=new Stack<>();
  3. stack.push(1);
  4. isEmpty();//判断栈是否为空;

栈的实现

基于链表的实现:

链表实现栈,主要需要考虑链表节点的插入和删除问题。

具体过程:每次插入新元素时,创建一个新节点并将其插入链表头部;每次弹出栈顶元素时,删除链表头部元素并返回其值即可。如下图解:

 

  1. /* linkedlist_stack */
  2. class LinkedListStack{
  3. private ListNode stackPeek;
  4. private int stkSize=0;
  5. public void push(int num){
  6. ListNode node=new ListNode(num);
  7. node.next=stackPeek;
  8. stackPeek=node;
  9. stkSize++;
  10. }
  11. public void pop{
  12. int num=peek();
  13. stackPeek=stackPeek.next;
  14. stkSize--;
  15. return num;
  16. }
  17. }

  1. public class LinkedListStack {
  2. private Node top = null; // 栈顶指针
  3. public void push(int value) {
  4. Node newNode = new Node(value);
  5. if (top == null) top = newNode; // 如果栈为空,将新节点作为栈顶指针
  6. else {
  7. newNode.next = top; // 将新节点放在栈顶,并更改栈顶指针
  8. top = newNode;
  9. }
  10. }
  11. public int pop() {
  12. if (top == null) return -1; // 栈为空
  13. int value = top.value;
  14. top = top.next; // 修改栈顶指针
  15. return value;
  16. }
  17. private static class Node {
  18. private int value;
  19. private Node next;
  20. public Node(int value) {
  21. this.value = value;
  22. }
  23. }
  24. }


基于数组的实现

数组实现栈,主要需要考虑如何实现栈的扩容问题。

具体过程是:当数组中元素个数已满时,开辟一个新的数组,并将原来数组中的元素全部复制到新数组中,然后再把新元素加入新数组。

 

数组栈的主要优势在于插入和删除都可以通过索引直接访问元素。

  1. /* array_stack */
  2. add()
  3. return stack.remove(size()-1);

  1. public class ArrayStack {
  2. private int[] items; // 存放元素的数组
  3. private int top = -1; // 栈顶指针
  4. private int capacity; // 数组容量
  5. public ArrayStack(int capacity) {
  6. this.capacity = capacity;
  7. items = new int[capacity];
  8. }
  9. public boolean push(int item) {
  10. if (top == capacity - 1) return false; // 栈已满
  11. items[++top] = item; // 先将栈指针+1,再赋值
  12. return true;
  13. }
  14. public int pop() {
  15. if (top == -1) return -1; // 栈为空
  16. int item = items[top--]; // 先取值,再将栈指针-1
  17. return item;
  18. }
  19. }

两种实现对比

支持操作:

时间效率:

都为O(1),推荐链表栈

空间效率:

数组栈需要预先分配一定大小的内存空间,会常用扩容操作。而链表栈不需要预先分配内存,通过动态增长、缩减空间,相比之下空间利用率更高。

分析总结:

使用数组作为底层实现可以快速插入和删除元素,但是需要考虑扩容问题;而使用链表作为底层实现则不需要考虑扩容问题,但是需要额外的空间存储指针信息。

在实际应用中,根据具体场景选择不同的底层实现方式能够更好地兼顾性能和空间效率。

典型应用

1.括号匹配

假设有一个字符串,其中包含小括号、中括号和大括号3种类型的括号,请编写一个函数判断该字符串中的括号是否匹配。

代码:

  1. import java.util.Stack;
  2. public class BracketMatch {
  3. public static boolean isMatch(String s) {
  4. // 使用 Stack<Character>类型的栈来存储遍历到的括号
  5. Stack<Character> stack = new Stack<>();
  6. // 当遍历到左括号时,将其压入栈中;
  7. // 当遍历到右括号时,判断栈顶元素是否与之匹配,如果匹配则弹出栈顶元素,否则返回 false。
  8. // 最后判断栈是否为空即可。
  9. for (char c : s.toCharArray()) {
  10. if (c == '(' || c == '[' || c == '{') stack.push(c);
  11. else if (c == ')' && !stack.isEmpty() && stack.peek() == '(') stack.pop();
  12. else if (c == ']' && !stack.isEmpty() && stack.peek() == '[') stack.pop();
  13. else if (c == '}' && !stack.isEmpty() && stack.peek() == '{') stack.pop();
  14. else return false; // 遇到非法字符直接返回 false
  15. }
  16. return stack.isEmpty(); // 如果栈为空,则说明所有括号都匹配成功
  17. }
  18. public static void main(String[] args) {
  19. String s1 = "()[]{}"; // true
  20. String s2 = "([)]"; // false
  21. String s3 = "({[]})"; // true
  22. System.out.println(isMatch(s1));
  23. System.out.println(isMatch(s2));
  24. System.out.println(isMatch(s3));
  25. }
  26. }

2.表达式求值

假设有一个表达式字符串,其中包含加减乘除四种运算符和括号,请编写一个函数计算该表达式的结果。

代码:

  1. import java.util.Stack;
  2. public class ExpressionEvaluation {
  3. public static int evaluate(String s) {
  4. Stack<Integer> operands = new Stack<>(); // 存储操作数的栈
  5. Stack<Character> operators = new Stack<>(); // 存储运算符的栈
  6. for (char c : s.toCharArray()) {
  7. if (c >= '0' && c <= '9') operands.push(c - '0'); // 如果是数字,则直接将其压入操作数栈中
  8. else if (c == '+' || c == '-' || c == '*' || c == '/') { // 如果是运算符
  9. while (!operators.isEmpty() && precedence(c) <= precedence(operators.peek())) { // 弹出优先级比当前运算符高或相等的运算符
  10. char operator = operators.pop();
  11. int b = operands.pop(), a = operands.pop(); // 取出栈顶的两个操作数
  12. operands.push(calculate(a, b, operator)); // 计算结果并压回栈中
  13. }
  14. operators.push(c); // 将当前运算符入栈
  15. }
  16. else if (c == '(') operators.push(c); // 如果是左括号,则直接入栈
  17. else if (c == ')') { // 如果是右括号,则弹出运算符并计算结果,直到遇到左括号
  18. while (!operators.isEmpty() && operators.peek() != '(') {
  19. char operator = operators.pop();
  20. int b = operands.pop(), a = operands.pop();
  21. operands.push(calculate(a, b, operator));
  22. }
  23. operators.pop(); // 弹出左括号
  24. }
  25. else throw new IllegalArgumentException("Invalid character: " + c); // 非法字符,抛出异常
  26. }
  27. while (!operators.isEmpty()) { // 计算剩余的运算符
  28. char operator = operators.pop();
  29. int b = operands.pop(), a = operands.pop();
  30. operands.push(calculate(a, b, operator));
  31. }
  32. return operands.pop(); // 返回最后的结果,即为表达式的值
  33. }
  34. private static int precedence(char operator) { // 定义运算符的优先级
  35. if (operator == '*' || operator == '/') return 2;
  36. else if (operator == '+' || operator == '-') return 1;
  37. else throw new IllegalArgumentException("Invalid operator: " + operator); // 非法运算符,抛出异常
  38. }
  39. private static int calculate(int a, int b, char operator) { // 计算两个操作数的结果
  40. switch (operator) {
  41. case '+': return a + b;
  42. case '-': return a - b;
  43. case '*': return a * b;
  44. case '/': return a / b;
  45. default: throw new IllegalArgumentException("Invalid operator: " + operator); // 非法运算符,抛出异常
  46. }
  47. }
  48. public static void main(String[] args) {
  49. String s1 = "3+4*2/(1-5)+6/2"; // 7
  50. String s2 = "2*(3+4)-5/2"; // 11
  51. String s3 = "(1+2)*(3+4)"; // 21
  52. System.out.println(evaluate(s1));
  53. System.out.println(evaluate(s2));
  54. System.out.println(evaluate(s3));
  55. }
  56. }

在上述代码中,我们使用了两个栈:一个存储操作数(整型数字),一个存储运算符。

遍历字符串时:

  1. 如果遇到数字则直接压入操作数栈中,
  2. 如果遇到运算符则将其与栈顶运算符比较优先级,如果当前运算符的优先级比栈顶高则入栈,否则弹出栈顶元素并计算结果。
  3. 遇到左括号则直接入栈,遇到右括号则取出运算符并计算结果,直到遇到左括号为止。

最后将剩余的操作数和运算符依次计算并返回即可。

即可。




队列(Queue)

介绍

  1. 用于存储按照时间顺序排列的元素。
  2. 队列具有“先进先出”(FIFO)的特性。如下图解:

常见操作

方法名

描述

时间复杂度

push()

元素入队,即将元素添加至队尾

O(1)

poll()

队首元素出队

O(1)

front()

访问队首元素

O(1)

size()

获取队列的长度

O(1)

isEmpty()

判断队列是否为空

O(1)

队列实现

基于链表的实现

  1. 链表队列实现主要需要考虑节点的插入和删除问题。
  2. 具体过程:每次从队列中添加元素时,创建一个新的链表节点并将其插入到队列的尾部;每次删除元素时,删除链表头部的节点并返回其值。如下图解:

  1. /* linkedlist_queue */
  2. ListNoe front,rear;
  3. queSize=0;
  4. push(int num){
  5. ListNode node=new ListNode(num);
  6. if(front==null){
  7. front=node;
  8. rear=node;
  9. }
  10. else{
  11. rear.next=node;
  12. rear=node;
  13. }
  14. }
  15. pop(){
  16. int num=peek();
  17. front=front.next;
  18. queSize--;
  19. return num;
  20. }

 

  1. public class LinkedListQueue {
  2. private Node head = null; // 队首指针
  3. private Node tail = null; // 队尾指针
  4. public void enqueue(int value) {
  5. Node newNode = new Node(value);
  6. if (tail == null) { // 如果队列为空,头尾指针都指向新节点
  7. head = newNode;
  8. tail = newNode;
  9. }
  10. else {
  11. tail.next = newNode; // 将新节点作为尾节点
  12. tail = tail.next; // 修改尾节点指针
  13. }
  14. }
  15. public int dequeue() {
  16. if (head == null) return -1; // 队列为空
  17. int value = head.value;
  18. head = head.next; // 修改头节点指针
  19. if (head == null) tail = null; // 如果队列中只有一个元素,则需要同时修改尾节点指针
  20. return value;
  21. }
  22. private static class Node {
  23. private int value;
  24. private Node next;
  25. public Node(int value) {
  26. this.value = value;
  27. }
  28. }
  29. }


基于数组的实现

  1. 数组队列实现需要注意当队列数组已满时,需要创建一个新的数组来扩充旧的数组。
  2. 具体过程:当队列数组已满时,让队列尾指针指向新的位置,重新开辟一个新的数组,将原队列中的数据复制到新队列中,并且释放原队列的空间。

  1. /* array_queue */
  2. class sss{
  3. int[] num;
  4. int front;
  5. int queSize;
  6. push(int num){
  7. if
  8. int rear=(front+queSize)%capa;
  9. nums[rear]=num;
  10. queSize++;
  11. }
  12. pop(){
  13. peek;
  14. front=(front+1)%capa;
  15. queSize--;
  16. }
  17. };

 

  1. public class ArrayQueue {
  2. private int[] items; // 存放元素的数组
  3. private int head = 0; // 队头指针
  4. private int tail = 0; // 队尾指针
  5. private int capacity; // 数组容量
  6. public ArrayQueue(int capacity) {
  7. this.capacity = capacity;
  8. items = new int[capacity];
  9. }
  10. public boolean enqueue(int item) {
  11. if (tail == capacity) return false; // 队列已满
  12. items[tail++] = item;
  13. return true;
  14. }
  15. public int dequeue() {
  16. if (head == tail) return -1; // 队列为空
  17. int item = items[head++];
  18. return item;
  19. }
  20. }

两种实现对比

时间复杂度:

都为O(1)。

空间复杂度:

跟栈的说法相似。数组实现的队列需要预先分配一定大小的内存空间,在使用过程中如果超过了这个空间限制就需要进行扩容。而链表实现的队列不需要预先分配内存,可以动态增长或者缩小空间,所以空间利用率更高。

放松小时刻

关于栈和队列的一道例题:Problem - 1702

hdu 1702 “Acboy needs your help again!”

ACboy再次需要你的帮助!

时间限制:1000/1000 MS(Java/其他) 内存限制:32768/32768 K (Java/其他)
 

问题描述

阿童被绑架了!!
他非常想念他的母亲,现在非常害怕。你无法想象他被关进的房间有多暗,:(那么可怜。
作为一个聪明的ACMer,你想让ACboy走出怪物的迷宫。但当你到达迷宫的大门时,怪物说:“我听说你很聪明,但如果不能解决我的问题,你会和ACboy一起死去。
怪物的问题显示在墙上:
每个问题的第一行是一个整数N(命令的数量),和一个单词“FIFO”或“FILO”。(你很高兴,因为你知道“FIFO”代表“先进先出”,“FILO”的意思是“先进后出”)。
而接下来的N行,每行是“IN M”或“OUT”,(M代表一个整数)。
而问题的答案是一扇门的通行证,所以如果你想拯救ACboy,请仔细回答问题!
 

输入

输入包含多个测试用例。
第一行有一个整数,表示测试用例的数量。
每个子问题的输入如上所述。
 

输出

对于每个命令“OUT”,您应该输出一个整数,具体取决于单词“FIFO”或“FILO”,或者如果没有任何整数,则应输出单词“None”。

示例输入

4 
4 FIFO 
IN 1 
IN 2 
OUT 
OUT 
4 FILO 
IN 1 
IN 2 
OUT 
OUT 
5 FIFO 
IN 1 
IN 2 
OUT 
OUT 
OUT 
5 FILO 
IN 1 
IN 2 
OUT 
IN 3 
OUT

示例输出

1 
2 
2 
1 
1 
2 
None 
2 
3

2007省赛集训队练习赛(1)

模拟栈和队列,栈是FILO,队列是FIFO。

--分析:分别用栈和队列模拟--

C++代码实现:

  1. #include<bits/stdc++.h> //C++
  2. using namespace std;
  3. int main(){
  4. int t,n,temp;
  5. cin>>t;//测试的次数
  6. while(t--){
  7. string str,str1;
  8. queue<int> Q;//定义一个队列
  9. stack<int> S;//定义一个栈
  10. cin>>n>>str;//输入每组要输入的个数,以及存储方式
  11. for(int i=0;i<n;i++){
  12. if(str=="FIFO"){//当为 FIFO时,表示队列
  13. cin>>str1;//输入 IN或者是 OUT
  14. if(str1=="IN"){
  15. cin>>temp;
  16. Q.push(temp);
  17. }
  18. else if(str1=="OUT"){
  19. if(Q.empty()) cout<<"None"<<endl;//队列为空,输出 None
  20. else{
  21. cout<<Q.front()<<endl;//访问该队首
  22. Q.pop();//删除队首元素
  23. }
  24. }
  25. }
  26. else{//当为 FILO,表示存储方式是栈
  27. cin>>str1;
  28. if(str1=="IN"){
  29. cin>>temp;
  30. S.push(temp);
  31. }
  32. else if(str1=="OUT"){
  33. if(S.empty()) cout<<"None"<<endl;
  34. else{
  35. cout<<S.top()<<endl;
  36. S.pop();
  37. }
  38. }
  39. }
  40. }
  41. }
  42. return 0;
  43. }

//热爱C++的每一天


声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/神奇cpp/article/detail/1001726
推荐阅读
相关标签
  

闽ICP备14008679号