JavaSE 优先级队列(堆)

目录

  • 1 二叉树的顺序存储
    • 1.1 存储方式
    • 1.2 下标关系
  • 2 堆(heap)
    • 2.1 概念
    • 2.2 操作-向下调整
    • 2.3 操作-建堆
  • 3 堆的应用-优先级队列
    • 3.1 概念
    • 3.2 内部原理
    • 3.3 操作-入队列(向上调整)
    • 3.4 操作-出队列(优先级最高)
    • 3.5 返回队首元素(优先级最高)
    • 3.6 java 中的优先级队列
    • 3.7 堆的常见用途
      • 3.7.1 topK问题
      • 3.7.2 堆排序

1 二叉树的顺序存储

1.1 存储方式

使用数组保存二叉树结构,方式即将二叉树用层序遍历方式放入数组中。
一般只适合表示完全二叉树,因为非完全二叉树会有空间的浪费。
这种方式的主要用法就是堆的表示。
在这里插入图片描述

1.2 下标关系

1. 已知双亲(parent)的下标,则:

左孩子(left)下标 = 2 * parent + 1;
右孩子(right)下标 = 2 * parent + 2。

2. 已知孩子(不区分左右)(child)下标,则:

双亲(parent)下标 = (child - 1) / 2

2 堆(heap)

2.1 概念

  1. 堆逻辑上是一棵完全二叉树;
  2. 堆物理上是保存在数组中;
  3. 满足任意结点的值都大于其子树中结点的值,叫做大堆,或者大根堆,或者最大堆;
  4. 反之,则是小堆,或者小根堆,或者最小堆;
  5. 堆的基本作用是,快速找集合中的最值。

在这里插入图片描述

2.2 操作-向下调整

前提: 左右子树必须已经是一个堆,才能调整。
说明:

  1. array 代表存储堆的数组;
  2. size 代表数组中被视为堆数据的个数;
  3. index 代表要调整位置的下标;
  4. left 代表 index 左孩子下标;
  5. right 代表 index 右孩子下标;
  6. min 代表 index 的最小值孩子的下标;

过程(以小堆为例):

  1. index 如果已经是叶子结点,则整个调整过程结束。
    (1)判断 index 位置有没有孩子;
    (2)因为堆是完全二叉树,没有左孩子就一定没有右孩子,所以判断是否有左孩子;
    (3)因为堆的存储结构是数组,所以判断是否有左孩子即判断左孩子下标是否越界,即 left >= size 越界。
  2. 确定 left 或 right,谁是 index 的最小孩子 min。
    (1)如果右孩子不存在,则 min = left;
    (2)否则,比较 array[left] 和 array[right] 值得大小,选择小的为 min。
  3. 比较 array[index] 的值 和 array[min] 的值,如果 array[index] <= array[min],则满足堆的性质,调整结束。
  4. 否则,交换 array[index] 和 array[min] 的值。
  5. 然后因为 min 位置的堆的性质可能被破坏,所以把 min 视作 index,向下重复以上过程。

图示:

// 调整前
int[ ] array = { 27,15,19,18,28,34,65,49,25,37 };
// 调整后
int[ ] array = { 15,18,19,25,28,34,65,49,27,37 };

在这里插入图片描述
时间复杂度分析:
最坏的情况即图示的情况,从根一路比较到叶子,比较的次数为完全二叉树的高度,即时间复杂度为 O(log2(n))。
代码:

public static void shiftDown(int[] array, int size, int index) {
    int left = 2 * index + 1;
    while (left < size) {
        int min = left;
   int right = 2 * index + 2;
        if (right < size) {
            if (array[right] < array[left]) {
                min = right;
           }
       }
        if (array[index] <= array[min]) {
            break;
       }
        int t = array[index];
        array[index] = array[min];
        array[min] = t;
         index = min;
        left = 2 * index + 1;
   }
}

2.3 操作-建堆

下面我们给出一个数组,这个数组逻辑上可以看做一颗完全二叉树,但是还不是一个堆,现在我们通过算法,把它构建成一个堆。
根节点左右子树不是堆,我们怎么调整呢?这里我们从倒数的第一个非叶子节点的子树开始调整,一直调整到根节点的树,就可以调整成堆。
图示(以大堆为例):

// 建堆前
int[ ] array = { 1,5,3,8,7,6 };
// 建堆后
int[ ] array = { 8,7,6,5,1,3 };

在这里插入图片描述
时间复杂度分析:
粗略估算,可以认为是在循环中执行向下调整,为 O(n * log2(n));了解后实际上是 O(n)。
以大堆为例的代码如下所示:
HeapDemo.java

public class HeapDemo {
    public int[] elem;
    public int usedSize;

    public HeapDemo(){
        this.elem = new int[10];
    }

    /*
    * 在这里 为什么可以传len
    * 是因为每棵树的结束位置 实际上都是一样的
    *
    * 假设长度为10,len就是10
    * */
    public void adjustDown(int parent,int len){
        int child = 2*parent+1;

        //child < len 说明有左孩子
        while(child < len){
            //child+1 < len 判断当前是否有右孩子
            if(child+1 < len && this.elem[child] < this.elem[child+1]){
                child++;
            }
            //child下标一定是左右孩子的最大值下标
            if(this.elem[child] > this.elem[parent]){
                int tmp = this.elem[child];
                this.elem[child] = this.elem[parent];
                this.elem[parent] = tmp;
                parent = child;
                child = 2*parent+1;
            }else{
                //因为是从最后一棵树开始调整的,只要我们找到了这个
                //this.elem[child] <= this.elem[parent]
                //说明后续就不需要循环了,后面的都是大根堆了
                break;
            }
        }
    }
    public void creatBigHeap(int[] array){
        for (int i = 0; i < array.length; i++) {
            this.elem[i] = array[i];
            this.usedSize++;
        }
        //elem当中已经存放了元素

        for(int i = (this.usedSize-1-1) / 2;i >= 0;i--){
            adjustDown(i,this.usedSize);
        }
    }
    public void show(){
        for (int i = 0; i < this.usedSize; i++) {
            System.out.print(this.elem[i] +" ");
        }
        System.out.println();
    }
}

TestDemo.java

import java.util.*;
public class TestDemo {
    public static void main(String[] args) {
        HeapDemo heapDemo = new HeapDemo();
        int[] array = { 27,15,19,18,28,34,65,49,25,37 };
        System.out.println(Arrays.toString(array));
        heapDemo.creatBigHeap(array);
        heapDemo.show();
    }}

运行结果如下图所示:
在这里插入图片描述

3 堆的应用-优先级队列

3.1 概念

在很多应用中,我们通常需要按照优先级情况对待处理对象进行处理,比如首先处理优先级最高的对象,然后处理次高的对象。最简单的一个例子就是,在手机上玩游戏的时候,如果有来电,那么系统应该优先处理打进来的电话。
在这种情况下,我们的数据结构应该提供两个最基本的操作,一个是返回最高优先级对象,一个是添加新的对象。这种数据结构就是优先级队列(Priority Queue)。

3.2 内部原理

优先级队列的实现方式有很多,但最常见的是使用堆来构建。

3.3 操作-入队列(向上调整)

过程(以大堆为例):

  1. 首先按尾插方式放入数组;
  2. 比较其和其双亲的值的大小,如果双亲的值大,则满足堆的性质,插入结束;
  3. 否则,交换其和双亲位置的值,重新进行 2、3 步骤;
  4. 直到根结点。

图示:
在这里插入图片描述
代码:
HeapDemo.java

import java.util.Arrays;
public class HeapDemo {
    public int[] elem;
    public int usedSize;
    public HeapDemo(){
        this.elem = new int[10];
    }
    
    public void creatBigHeap(int[] array){
        for (int i = 0; i < array.length; i++) {
            this.elem[i] = array[i];
            this.usedSize++;
        }
        //elem当中已经存放了元素

        for(int i = (this.usedSize-1-1) / 2;i >= 0;i--){
            adjustDown(i,this.usedSize);
        }
    }
     public void push(int val){
        if(isFull()){
            this.elem = Arrays.copyOf(this.elem,2*this.elem.length);
        }
        this.elem[this.usedSize] = val;
        this.usedSize++;
        adjustUp(this.usedSize-1);
    }
    public void adjustUp(int child){
        int parent = (child-1)/2;
        while(child > 0){
            if(this.elem[child] > this.elem[parent]){
                int tmp = this.elem[child];
                this.elem[child] = this.elem[parent];
                this.elem[parent] = tmp;
                child = parent;
                parent = (child-1)/2;
            }else{
                break;
            }
        }
    }
     public boolean isFull(){
        return this.usedSize == this.elem.length;
    }
    public void show(){
        for (int i = 0; i < this.usedSize; i++) {
            System.out.print(this.elem[i] +" ");
        }
        System.out.println();
    }
}

TestDemo.java

import java.util.*;
public class TestDemo {
    public static void main(String[] args) {
        HeapDemo heapDemo = new HeapDemo();
        int[] array = { 27,15,19,18,28,34,65,49,25,37 };
        System.out.println(Arrays.toString(array));
        heapDemo.creatBigHeap(array);
        heapDemo.show();
        heapDemo.push(100);
        heapDemo.show();
}}

3.4 操作-出队列(优先级最高)

为了防止破坏堆的结构,删除时并不是直接将堆顶元素删除,而是用数组的最后一个元素替换堆顶元素,然后通过向下调整方式重新调整成堆。
图示:
在这里插入图片描述
代码:
HeapDemo.java

import java.util.Arrays;
public class HeapDemo {
    public int[] elem;
    public int usedSize;

    public HeapDemo(){
        this.elem = new int[10];
    }

    public void creatBigHeap(int[] array){
        for (int i = 0; i < array.length; i++) {
            this.elem[i] = array[i];
            this.usedSize++;
        }
        //elem当中已经存放了元素
        for(int i = (this.usedSize-1-1) / 2;i >= 0;i--){
            adjustDown(i,this.usedSize);
        }
    }
       
    public int poll(){
        if(isEmpty()){
            throw new RuntimeException("队列为空!");
        }
        int ret = this.elem[0];
        //删除
        int tmp = this.elem[0];
        this.elem[0] = this.elem[this.usedSize-1];
        this.elem[this.usedSize-1] = tmp;
        this.usedSize--;
        adjustDown(0,this.usedSize);
        return ret;
    }
    public boolean isEmpty(){
        return this.usedSize == 0;
    }   
    public void show(){
        for (int i = 0; i < this.usedSize; i++) {
            System.out.print(this.elem[i] +" ");
        }
        System.out.println();
    }
}

TestDemo.java

import java.util.*;
public class TestDemo {
    public static void main(String[] args) {
        HeapDemo heapDemo = new HeapDemo();
        int[] array = { 27,15,19,18,28,34,65,49,25,37 };
        System.out.println(Arrays.toString(array));
        heapDemo.creatBigHeap(array);
        heapDemo.show();
        System.out.println(heapDemo.poll());
        heapDemo.show();
}}

3.5 返回队首元素(优先级最高)

返回堆顶元素即可。
代码:

import java.util.Arrays;
public class HeapDemo {
    public int[] elem;
    public int usedSize;

    public HeapDemo(){
        this.elem = new int[10];
    }
    public void creatBigHeap(int[] array){
        for (int i = 0; i < array.length; i++) {
            this.elem[i] = array[i];
            this.usedSize++;
        }
        //elem当中已经存放了元素
        for(int i = (this.usedSize-1-1) / 2;i >= 0;i--){
            adjustDown(i,this.usedSize);
        }
    }
    public int peek(){
        if(isEmpty()){
            throw new RuntimeException("队列为空!");
        }
        return this.elem[0];
    }
    public boolean isEmpty(){
        return this.usedSize == 0;
    }
    public void show(){
        for (int i = 0; i < this.usedSize; i++) {
            System.out.print(this.elem[i] +" ");
        }
        System.out.println();
    }
}

3.6 java 中的优先级队列

PriorityQueue implements Queue
PriorityQueue的使用方法:

操作错误处理-抛出异常返回特殊值
入队列add(e)offer(e)
出队列remove()poll()
队首元素element()peek()

使用PriorityQueue的代码示例如下所示:

import java.util.*;
public class TestDemo {
    public static void main(String[] args) {
        /*
        * PriorityQueue 优先级队列 底层是由堆来实现的
        * PriorityQueue 底层默认是一个小根堆
        * 每次存元素的时候 一定要保证 数据进入堆中后 依然可以维持为一个小堆/大堆
        * 每次取出一个元素的时候 一定要保证 剩下的元素 也要调整为一个小堆/大堆
        * */
        PriorityQueue<Integer> qu = new PriorityQueue<>();
        qu.offer(3);
        qu.offer(1);
        qu.offer(4);
        qu.offer(2);
        qu.offer(5);
        System.out.println(qu.poll());//1
        System.out.println(qu.poll());//2
        System.out.println(qu.poll());//3
        //默认是小堆,我就要一个大堆呢?
        /*
        * 我们之前学过自定义比较器
        * */
        PriorityQueue<Integer> qu1 = new PriorityQueue<>(new Comparator<Integer>() {
            @Override
            public int compare(Integer o1, Integer o2) {
                //o2 > o1 o1小于o2
                return o2-o1;
            }
        });
        qu1.offer(3);
        qu1.offer(1);
        qu1.offer(4);
        qu1.offer(2);
        qu1.offer(5);
        System.out.println(qu1.poll());//5
        System.out.println(qu1.poll());//4
        System.out.println(qu1.poll());//3
}
    }

PriorityQueue的扩容方式:

int newCapacity = oldCapacity + ((oldCapacity < 64) ?(oldCapacity + 2) :oldCapacity >> 1));

3.7 堆的常见用途

堆有两个常见的用途:

  1. topK(求前K个最大/最小的元素)。
  2. 堆排序。

3.7.1 topK问题

关键记得:

  1. 找前 K 个最大的元素,要建 K 个大小的小堆;
  2. 找前 K 个最小的元素,要建 K 个大小的大堆;
  3. 找第K小的元素,要建立大小为K的大堆,等数组遍历完成后,堆顶元素就是第K小的元素。

时间复杂度为:O(nlog2(K))
找前K个最大的元素代码如下所示:

import java.util.*;
public class TestDemo {
    /*
    * 找前K个最大的元素
    * */
    public static void topK(int[] array,int k){
        //1、大小为K的小堆
        PriorityQueue<Integer> minHeap = new PriorityQueue<>(k, new Comparator<Integer>() {
            @Override
            public int compare(Integer o1, Integer o2) {
                return o1-o2;
            }
        });

        //2、遍历数组
        for (int i = 0; i < array.length; i++) {
            if (minHeap.size() < k){
                minHeap.offer(array[i]);
            }else{
                int top = minHeap.peek();
                if(array[i] > top){
                    minHeap.poll();
                    minHeap.offer(array[i]);
                }
            }
        }
        for (int i = 0; i < k ; i++) {
            System.out.println(minHeap.poll());
        }
    }
    public static void main(String[] args) {
        int[] array = { 27,15,19,18,28,34,65,49,25,37 };
        topK(array,3);
    }}

3.7.2 堆排序

关键记得: 从小到大排序,应该建一个大堆。
从小到大排序的代码如下所示:
HeapDemo.java

import java.util.Arrays;
public class HeapDemo {
    public int[] elem;
    public int usedSize;

    public HeapDemo(){
        this.elem = new int[10];
    }

    /*
    * 在这里 为什么可以传len
    * 是因为每棵树的结束位置 实际上都是一样的
    *
    * 假设长度为10,len就是10
    * */
    public void adjustDown(int parent,int len){
        int child = 2*parent+1;

        //child < len 说明有左孩子
        while(child < len){
            //child+1 < len 判断当前是否有右孩子
            if(child+1 < len && this.elem[child] < this.elem[child+1]){
                child++;
            }
            //child下标一定是左右孩子的最大值下标
            if(this.elem[child] > this.elem[parent]){
                int tmp = this.elem[child];
                this.elem[child] = this.elem[parent];
                this.elem[parent] = tmp;
                parent = child;
                child = 2*parent+1;
            }else{
                //因为是从最后一棵树开始调整的,只要我们找到了这个
                //this.elem[child] <= this.elem[parent]
                //说明后续就不需要循环了,后面的都是大根堆了
                break;
            }
        }
    }
    public void creatBigHeap(int[] array){
        for (int i = 0; i < array.length; i++) {
            this.elem[i] = array[i];
            this.usedSize++;
        }
        //elem当中已经存放了元素

        for(int i = (this.usedSize-1-1) / 2;i >= 0;i--){
            adjustDown(i,this.usedSize);
        }
    }
    public void show(){
        for (int i = 0; i < this.usedSize; i++) {
            System.out.print(this.elem[i] +" ");
        }
        System.out.println();
    }
    //排序
    public void heapSort(){
        int end = this.usedSize-1;
        while(end > 0){
            int tmp = this.elem[0];
            this.elem[0] = this.elem[end];
            this.elem[end] = tmp;
            adjustDown(0,end);
            end--;
        }
    }
}

TestDemo.java

import java.util.*;
public class TestDemo {
    public static void main(String[] args) {
        HeapDemo heapDemo = new HeapDemo();
        int[] array = { 27,15,19,18,28,34,65,49,25,37 };
        System.out.println(Arrays.toString(array));
        heapDemo.creatBigHeap(array);
        heapDemo.show();
        heapDemo.heapSort();
        heapDemo.show();
    }}

将上面代码改装成数组也是一样的,具体代码如下所示:

import java.util.*;
public class TestDemo {
    //改装成数组也是一样的
    public static void adjustDown2(int[] array,int parent,int len){
        int child = 2*parent+1;
        while(child < len){
            if(child+1 < len && array[child] < array[child+1]){
                child++;
            }
            if(array[child] > array[parent]){
                int tmp = array[child];
                array[child] = array[parent];
                array[parent] = tmp;
                parent = child;
                child = 2*parent+1;
            }else{
                break;
            }
        }
    }
    public static void creatBigHeap2(int[] array){
        for(int i = (array.length-1-1) / 2;i >= 0;i--){
            adjustDown2(array,i,array.length);
        }
    }
    
    /*
    * 时间复杂度:不管是最好,或是最坏,均为O(nlog2(n))
    * 空间复杂度:O(1)
    * */
    public static void heapSort2(int[] array){
        creatBigHeap2(array);
        int end = array.length-1;
        while(end > 0){
            int tmp = array[0];
            array[0] = array[end];
            array[end] = tmp;
            adjustDown2(array,0,end);
            end--;
        }
    }
    public static void main(String[] args) {
        int[] array = { 27,15,19,18,28,34,65,49,25,37 };
        heapSort2(array);
        System.out.println(Arrays.toString(array));
    }}

所以,对于堆排序来说:
时间复杂度: 不管是最好,或是最坏,均为O(nlog2(n))。
空间复杂度: O(1)。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:/a/110795.html

如若内容造成侵权/违法违规/事实不符,请联系我们进行投诉反馈qq邮箱809451989@qq.com,一经查实,立即删除!

相关文章

【记录】使用yolov5_obb训练自己的数据集

引言 对于寻常的yolov5目标检测任务&#xff0c;只能检测水平或者垂直的检测框&#xff0c;而对于旋转框的检测却无能为力。为此&#xff0c;在这记录下使用yolov5_obb来训练自己数据集。 一、准备数据集 1、我们先看所需要的数据集文件什么样子&#xff0c;如下图文件夹Sym…

ngx_http_request_s

/* 罗剑锋老师的注释参考&#xff1a; https://github.com/chronolaw/annotated_nginx/blob/master/nginx/src/http/ngx_http_request.h */struct ngx_http_request_s {uint32_t signature; /* "HTTP" */ngx_connection_t …

解决深度学习训练时使用tensorboard http://localhost:6006/无法访问此网站问题

在windows上跑yolov5模型使用了Tensorboard来查看训练过程&#xff0c;开始训练&#xff0c;终端就会提示 直接点击这个网址&#xff0c;就会出现 解决办法是重新开一个终端&#xff0c;激活目前正在使用的虚拟环境&#xff0c;在下面输入 tensorboard --logdir runs\train -…

Leetcode2086. 从房屋收集雨水需要的最少水桶数

Every day a Leetcode 题目来源&#xff1a;2086. 从房屋收集雨水需要的最少水桶数 解法1&#xff1a;贪心 我们可以对字符串 hamsters 从左到右进行一次遍历。 每当我们遍历到一个房屋时&#xff0c;我们可以有如下的选择&#xff1a; 如果房屋的两侧已经有水桶&#xff…

C++ 入门

C关键字 C总计63个关键字&#xff0c;C语言总计32个关键字 命名空间 在c中变量&#xff0c;函数和类都是大量存在的&#xff0c;这些名称都存在于全局作用域中&#xff0c;可能会导致很多冲突&#xff0c;使用命名空间的目的就是对标识符的名称进行本地化&#xff0c;以避免命…

电商零售商家需求预测及库存优化问题(第1问)

电商零售商家需求预测及库存优化问题 数据和题目来源于 2023 年 MathorCup 高校数学建模挑战赛——大数据竞赛 只有第一问&#xff0c;使用ARIMA做预测&#xff0c;使用聚类算法做特征相似性 1 数据读取和处理 1.1 清除重复值 注意附件4要去重&#xff0c;原来是56条数据&am…

一文搞懂“支付·清结算·账务”全局

《上帝视角看支付&#xff0c;总架构解析》 对支付的宏观层面做了分析&#xff0c;详解了整个支付体系每一层的架构和业务模型&#xff0c;而每一层的企业内部支付体系建设是什么样的&#xff1f;会涉及到哪些环节和系统&#xff1f;每个系统会涉及到哪些单据和逻辑&#xff0c…

如何使用 Docker 搭建 Jenkins 环境?从安装到精通

不少兄弟搭 jenkins 环境有问题&#xff0c;有的同学用 window, 有的同学用 mac&#xff0c; 有的同学用 linux。 还有的同学公司用 window, 家里用 mac&#xff0c;搭个环境头发掉了一地。。。 这回我们用 docker 去搭建 jenkins 环境&#xff0c;不管你是用的是什么系统&…

KaiwuDB 亮相第四届跨国公司领导人青岛峰会

10月10日至12日&#xff0c;由商务部和山东省人民政府共同主办的第四届跨国公司领导人青岛峰会在青岛国际会议中心举办。该峰会为跨国公司打造的国家级开放平台&#xff0c;是聚集跨国公司与中国合作、专注跨国公司议题、分享跨国公司经验、链接资源、促进合作的重大活动。Kaiw…

4.多层感知机-2简化版

#pic_center R 1 R_1 R1​ R 2 R^2 R2 目录 知识框架No.1 多层感知机一、感知机1、感知机2、训练感知机3、图形解释4、收敛定理5、XOR问题6、总结 二、多层感知机1、XOR2、单隐藏层3、单隐藏层-单分类4、为什么需要非线性激活函数5、Sigmoid函数6、Tanh函数7、ReLU函数8、多类分…

Spring cloud教程Gateway服务网关

Spring cloud教程|Gateway服务网关 写在前面的话&#xff1a; 本笔记在参考网上视频以及博客的基础上&#xff0c;只做个人学习笔记&#xff0c;如有侵权&#xff0c;请联系删除&#xff0c;谢谢&#xff01; Spring Cloud Gateway 是 Spring Cloud 的一个全新项目&#xff0c;…

如何将你的PC电脑数据迁移到Mac电脑?使用“迁移助理”从 PC 传输到 Mac的具体操作教程

有的小伙伴因为某一项工作或者其它原因由Windows电脑换成了Mac电脑&#xff0c;但是数据和文件都在原先的Windows电脑上&#xff0c;不知道怎么传输。接下来小编就为大家介绍使用“迁移助理”将你的通讯录、日历、电子邮件帐户等内容从 Windows PC 传输到 Mac 上的相应位置。 在…

Leetcode刷题详解——下降路径最小和

1. 题目链接&#xff1a;931. 下降路径最小和 2. 题目描述&#xff1a; 给你一个 n x n 的 方形 整数数组 matrix &#xff0c;请你找出并返回通过 matrix 的下降路径 的 最小和 。 下降路径 可以从第一行中的任何元素开始&#xff0c;并从每一行中选择一个元素。在下一行选择…

UML—时序图是什么

目录 前言: 什么是时序图: 时序图的组成元素&#xff1a; 1. 角色(Actor) 2. 对象(Object) 3. 生命线(LifeLine) 4. 激活期(Activation) 5. 消息类型(Message) 6.组合片段(Combined fragment) 时序图的绘制规则:​ 绘制时序图的3步&#xff1a; 1.划清边界&#xf…

redis-集群切片

切片集群 我曾遇到过这么一个需求&#xff1a;要用 Redis 保存 5000 万个键值对&#xff0c;每个键值对大约是 512B&#xff0c;为了能快速部署并对外提供服务&#xff0c;我们采用云主机来运行 Redis 实例&#xff0c;那么&#xff0c;该如何选择云主机的内存容量呢&#xff…

linux目录与文件管理

目录与路径 关于执行文件路径的变量&#xff1a;$PATH ls完整文件名为&#xff1a;/bin/ls 在任何文件夹下输入ls命令可以显示出一些信息而不是找不到命令&#xff0c;这就是因为环境变量PATH所致。在执行命令时&#xff0c;系统会依照PATH的设置去每个PATH定义的目录下查找文…

【mysql】实现设置表中所有数据的update_time,要求每1000条设置在一天

实现效果示例 执行SQL&#xff1a;&#xff08;mysql 版本查看&#xff1a; select VERSION() &#xff1a;5.7.36-log&#xff09; 实现效果&#xff1a; 这里最后一个id 9 > 总条数 6&#xff0c;所以没有更新到&#xff0c;直接手动补下就行 SELECT * FROM my_test S…

最新ai系统ChatGPT商业运营版网站源码+支持GPT4.0/支持AI绘画+已支持OpenAI GPT全模型+国内AI全模型+绘画池系统

一、AI创作系统 SparkAi创作系统是基于OpenAI很火的ChatGPT进行开发的Ai智能问答系统和Midjourney绘画系统&#xff0c;支持OpenAI-GPT全模型国内AI全模型。本期针对源码系统整体测试下来非常完美&#xff0c;可以说SparkAi是目前国内一款的ChatGPT对接OpenAI软件系统。那么如…

全平台七合一万能DIY小程序源码系统 带完整搭建教程

近年来互联网技术的飞速发展&#xff0c;尤其是移动互联网的普及。随着微信、支付宝、百度、抖音、头条等平台的迅速崛起&#xff0c;小程序成为了这些平台上重要的应用形态。这些小程序的应用范围广泛&#xff0c;包括电商、教育、娱乐、生活服务等各个领域。然而&#xff0c;…

常用排序算法

目录 直接插入排序 希尔排序 ​编辑 选择排序 堆排序 冒泡排序 快速排序 hoare版 挖坑法 前后指针法 非递归 归并排序 非递归 计数排序 直接插入排序 直接插入排序跟依次模扑克牌一样&#xff0c;将最后一张牌依次与前面的牌比较&#xff0c;最后将牌插入到指定位…