本文分类:news发布日期:2024/12/23 23:57:15
相关文章
面试150 颠倒二进制位 位运算分治 逻辑右移
Problem: 190. 颠倒二进制位 文章目录 思路复杂度位运算分治法 思路
👨🏫 参考题解 >>>:逻辑右移(符号位一起移动,高位补零)
复杂度
时间复杂度: O ( log n ) O(\log{n}) O(logn)
空间…
建站知识
2024/12/23 23:37:32
LeetCodeLCR 114. 火星词典——拓扑排序
文章目录 一、题目二、题解 一、题目
现有一种使用英语字母的外星文语言,这门语言的字母顺序与英语顺序不同。
给定一个字符串列表 words ,作为这门语言的词典,words 中的字符串已经 按这门新语言的字母顺序进行了排序 。
请你根据该词典还…
建站知识
2024/12/20 2:49:27
mysql学习打卡day24
今日成果:
select * from invoices where invoice_total > all ( select invoice_total from invoices where client_id 3);
select * from invoices where invoice_total > ( select max(invoice_total) from invoices where client_id 3 ); -- 两种方…
建站知识
2024/12/21 17:27:38
使用 git 上传文件时,运行 命令 git pull origin 时未成功,出现报错信息
项目场景:
背景:
使用 git 上传文件时,运行 命令 git pull origin 时未成功,出现报错信息 问题描述
问题:
$ git pull origin print --allow-unrelated-histories
error: Pulling is not possible because you hav…
建站知识
2024/12/22 15:51:30
centos安装inpanel
前置条件
安装python
yum -y install python 安装
cd /usr/local
git clone https://gitee.com/WangZhe168_admin/inpanel.git
cd inpanel
python install.py
安装过程需要设置账户 密码 端口号
我设置的是admin:admin 10050 使用
打开浏览器,输入
http://192.168.168.…
建站知识
2024/12/17 15:07:26
annaconda如何切换当前python环境
annaconda默认的python环境是base: 把各种项目的依赖都安装到base环境中不是一个好的习惯,比如说我们做爬虫项目和做自动化测试项目等所需要的依赖是不一样的,我们可以将为每个项目创建自己的环境,在各自的环境中安装自己的依赖&…
建站知识
2024/12/19 12:25:33
Kubernetes基础(十四)-k8s网络通信
1 k8s网络类型 2 Pod网络
2.1 同一pod内不同容器通信
Pod是Kubernetes中最小的可部署单元,它是一个或多个紧密关联的容器的组合,这些容器共享同一个网络命名空间和存储卷,因此Pod中的所有容器都共享相同的网络命名空间和IP地址——PodIP&a…
建站知识
2024/12/20 3:14:48
datax离线同步oracle表到clickhouse实践1
时间:2024.01
目录1、安装启动 oracle19c 容器 2、rpm包安装clickhouse 3、datax安装 4、datax同步 目标库根据要同步的表,按照clickhouse建表规范建表 编写json文件 编写增量同步shell脚本,加入 crond 定时任务
1、安装启动 oracle19c 容器…
建站知识
2024/12/23 22:17:02