一、 Git环境部署及使用 1. Git/GitHub/GitLab Git: 目前最先进的分布式版本控制系统 GitHub: 全球最大的面向开源及私有软件项目的托管平台,免费注册并且可以免费托管开源代码。 GitLab 与GitHub类似,也是属于第三方基于Git开发的产品,不同的是:GitLab ...
分类:
其他好文 时间:
2020-05-19 22:42:20
阅读次数:
70
题目链接 直接算每次破坏会拆开多少个连通块貌似不可做。考虑反着加边用并查集合并。 那么我们首先用$vector$存下每个点出边到的点的序列。注意:$m\in[1,2\times 10^5]$而$n\in [1,2\times m]$所以$n\in [1,4\times 10^5]$。 读入破坏的顺序 ...
分类:
Web程序 时间:
2020-05-18 22:42:30
阅读次数:
79
Oracle 通过一个表字段,更新另一个表字段: 方法一:通过update实现 update g_sn_status A set A.out_process_time = (select B.rec_time from g_sn_defect B where B.serial_number = A. ...
分类:
数据库 时间:
2020-05-18 20:43:53
阅读次数:
98
一、归并排序 先通过递归将列表元素分开,然后通过合并比较大小进行排序。 二、上代码 def merge(li, low, mid, high): """ 归并排序 :param li:参数列表 :param low: 列表最左边 :param mid: 列表中间的 :param high: 列表最右 ...
分类:
编程语言 时间:
2020-05-17 13:31:42
阅读次数:
83
//并查集-都要给fa赋初值!!// /*递归版路径压缩*/ const int maxn=2e5+9; int fa[maxn]; int find(int x) { return fa[x]==x?x:fa[x]=find(fa[x]); } void merge(int x,int y) { ...
分类:
其他好文 时间:
2020-05-16 12:36:03
阅读次数:
47
公用表表达式(Common Table Expression) 是SQL Server2005版本的引入的一个特性。CTE可以看组是一个临时的结果集,可以再接下来来的一个select,insert,update,delete,merge语句中多次引用。使用公用表达式CTE可以让语句更加清晰简练。 ...
分类:
其他好文 时间:
2020-05-16 01:02:13
阅读次数:
77
博客:https://www.cnblogs.com/chengxiao/p/6194356.html https://www.cnblogs.com/piperck/p/6030122.html python实现: def merge(left, right): """ params: left= ...
分类:
编程语言 时间:
2020-05-14 09:11:45
阅读次数:
64
#include "stdafx.h" #include <iostream> static void merge(int arrayOld[], int arrayNew[], int start, int mid, int end) { int i = start // seg1:[start, ...
分类:
其他好文 时间:
2020-05-14 01:51:42
阅读次数:
63
```pythonfrom collections import defaultdictfrom gensim import corporaimport jiebafrom gensim import similaritiesimport reclass Similarity: def docs(s... ...
分类:
其他好文 时间:
2020-05-14 01:24:08
阅读次数:
55
题意描述 对一个链表进行排序 测试用例 Input: 4 2 1 3 Output: 1 2 3 4 Input: 1 5 3 4 0 Output: 1 0 3 4 5 解题思路 一、思路一 1. 将链表进行拆分,最终向下拆分成一个节点为单位的链表 2. 比较节点的val大小,重新进行拼接 3. ...
分类:
其他好文 时间:
2020-05-13 23:44:10
阅读次数:
89