此博客链接: 检查两个字符串是否相等 题目链接:https://leetcode-cn.com/problems/check-if-two-string-arrays-are-equivalent/ 题目 给你两个字符串数组 word1 和 word2 。如果两个数组表示的字符串相同,返回 true ...
分类:
其他好文 时间:
2021-05-24 12:06:21
阅读次数:
0
This time, you are supposed to find A+B where A and B are two polynomials. Input Specification: Each input file contains one test case. Each case occu ...
分类:
编程语言 时间:
2021-05-24 10:17:27
阅读次数:
0
develop 分支 master 主分支 一般我们在开发项目的过程中,会在分支中去开发,在开发结束的一个周期再把代码代码合并到主分支中。所以就会存在一个问题,如何把分支代码合并到主分支,接下来记录一下我合并分支的一个命令流程 前提是,分支代码和主分支代码不会有冲突,就是说主分支目前的所有的代码和分 ...
分类:
其他好文 时间:
2021-05-24 09:14:38
阅读次数:
0
1. top命令常用参数解释 字段解释 PID:进程的IDUSER:进程所有者PR:进程的优先级别,越小越优先被执行NInice:值VIRT:进程占用的虚拟内存RES:进程占用的物理内存SHR:进程使用的共享内存S:进程的状态。S表示休眠,R表示正在运行,Z表示僵死状态,N表示该进程优先值为负数%C ...
分类:
系统相关 时间:
2021-05-24 08:52:51
阅读次数:
0
例: 根据value值排序 hasd = { 'a': 12, 'c': 7, 'd': 17, 'm': -9 } demo_dict = sorted(hasd.items(),key=lambda x:x[1]) print(demo_dict)[('m', -9), ('c', 7), (' ...
分类:
编程语言 时间:
2021-05-24 08:51:54
阅读次数:
0
关键思路从后往前合并 class Solution { public void merge(int[] nums1, int m, int[] nums2, int n) { int idxm=m-1; int idxn=n-1; int sum=m+n-1; while(idxm>=0&&idxn ...
分类:
移动开发 时间:
2021-05-24 08:38:40
阅读次数:
0
merge into ZQ_A A using ZQ_B b on (a.name=b.name) when matched then update set a.age=b.age when not matched then insert (a.name,a.age) values(b.name,b ...
分类:
数据库 时间:
2021-05-24 08:28:00
阅读次数:
0
+ + + + + + + + + + | stream of elements + > |filter+-> |sorted+-> |map+-> |collect| + + + + + + + + + + stream() ? 为集合创建串行流。 forEach Stream 提供了新的方法 ' ...
分类:
其他好文 时间:
2021-05-24 06:53:50
阅读次数:
0
一、题目: 二、思路: 这道题的思路其实也很简单,但就是想不到。 我们考虑题目中的限制“编号为 \(x,y\) 的两个顶点有且只有一个同时在顶点 \(p\) 的子树与顶点 \(q\) 的子树里”,看到这样的限制就应该想到 DFS 序或者其他能将子树包含关系转化到序列包含问题的做法。 对于这道题,我们 ...
分类:
其他好文 时间:
2021-05-24 05:40:25
阅读次数:
0
Insertion sort Attempt#1 每次将元素A[j]插入它之前的有序序列A[1 .. j-1]中,插入方式是与前一个相邻元素两两比较并交换直到到达正确位置 Complexity 显然复杂度主要来自于 compare 和 swap : 平均情况下,比较和交换均需要 Θ(n2),虽然可以 ...
分类:
其他好文 时间:
2021-05-24 02:26:31
阅读次数:
0