问题: 合并两个有序链表 链表L1: 1->2->4->9 链表L2: 3->5>6->10->13 合并后:1->2->3->4->5->6->9->10->13 1. 准备数据结构 及测试数据 Node节点 public class Node { public Integer value; pu ...
分类:
其他好文 时间:
2021-04-06 14:50:49
阅读次数:
0
Design HashMap (E) 题目 Design a HashMap without using any built-in hash table libraries. To be specific, your design should include these functions: pu ...
分类:
其他好文 时间:
2021-03-08 14:02:58
阅读次数:
0
SSH部分 操作主机创建密钥 [root@localhost ~]# ssh-keygen [root@localhost ~]# ls .ssh/ id_rsa id_rsa.pub 分发公钥到被监控端 [root@localhost .ssh]# ssh-copy-id -i id_rsa.pu ...
分类:
其他好文 时间:
2021-03-06 15:08:11
阅读次数:
0
H.265将图像划分为“树编码单元(coding tree units, CTU)”,而不是像H.264那样的16×16的宏块。根据不同的编码设置,树编码块的尺寸可以被设置为64×64或有限的32×32或16×16。很多研究都展示出更大的树编码块可以提供更高的压缩效率(同样也需要更高的编码速度)。每 ...
分类:
其他好文 时间:
2021-02-04 11:41:29
阅读次数:
0
方法 //main方法 public static void main(String[] args) { int sum=max(1,2); int sum2=add(1,2); System.out.println(sum); System.out.println(sum2); } //加法 pu ...
分类:
编程语言 时间:
2021-01-11 10:44:24
阅读次数:
0
剑指 Offer 28. 对称的二叉树 class Solution { public boolean isSymmetric(TreeNode root) { if(root == null) return true; return Just(root.left,root.right); } pu ...
分类:
其他好文 时间:
2021-01-05 11:27:06
阅读次数:
0
数据类型 java是强类型语言。意味着变量都必须先定义后才能使用。 强类型语言提升了安全性,但降低了运行速度。 基本类型 int byte short long float double char boolean String public class data_type_practice { pu ...
分类:
编程语言 时间:
2021-01-02 11:12:06
阅读次数:
0
从远程仓库下载到本地 git clone 仓库地址 本地修改的文件添加上传队列 git add * 上传队列中的文件提交到本地仓库 git commit -m '提交的说明' 将本地仓库的内容推送到远程仓库 git push origin master 拉取远程仓库内容到本地,更新代码 git pu ...
分类:
其他好文 时间:
2020-12-31 12:46:06
阅读次数:
0
class Solution { // 思路:【动态规划】 // 状态转移方程是 p[i,j] = p[i+1,j-1] && p[i] = p[j] // p[i,j] 表示第i个 和 第j 个是相同的 // 整体分两层循环【第一层按回文长度从零到n , 第二层就是字符从第一个开始往后循环】 pu ...
分类:
其他好文 时间:
2020-12-25 12:13:31
阅读次数:
0
背景 我们在优化MySQL时,需要考虑到创建索引,对字符型的列建立索引时,必须使用前缀索引,那么选择多大的长度合适呢? 数据表结构 计算完整列的选择性 计算方式 select count(DISTINCT left(pu_id,3))/count(*) as a3, count(DISTINCT l ...
分类:
数据库 时间:
2020-12-21 11:35:03
阅读次数:
0