importjava.util.Scanner;publicclassMain{publicstaticvoidsort(int[]arr,intleft,intright){if(left>=right){return;}intm=(left+right)>>>1;sort(arr,left,m);sort(arr,m+1,right);int[]tmp=newint[r
分类:
编程语言 时间:
2020-09-18 02:46:24
阅读次数:
36
jenkins是一款很好的CI(持续集成)工具,但是在常规化部署时如果碰到很多job需要构建和改变代码分支进行部署时还是挺麻烦的,所以考虑实现自动化。*#--coding:utf-8-*-#pipinstallpython-jenkinsimportjenkinsimportredefGetYaml():yamlPath=os.path.join(os.getcwd(),"Jenkins
分类:
编程语言 时间:
2020-09-18 02:27:58
阅读次数:
49
一. 字符串拼接 concat('asdf',str); -- asdfhello 二、字符串截取 从左开始截取字符串 left(str, length) --说明:left(被截取字段,截取长度) select left('hello',3); --hel 从右开始截取字符串 right(str, ...
分类:
数据库 时间:
2020-09-18 01:38:10
阅读次数:
44
Given an array nums, there is a sliding window of size k which is moving from the very left of the array to the very right. You can only see the k num ...
.box{ width:100%; background: url(../img/bg.png) no-repeat; background-size: 100% 100%; position: absolute; z-index: -1; top: 0; left: 0; right: 0; } ...
分类:
其他好文 时间:
2020-09-18 01:18:19
阅读次数:
31
若不考虑 \(m\) 的限制,打表可以发现: 当 \(p=2^n\left(n>1\right)\) 时,最大的 \(f_i\) 是 $5$,有十个 \(i\) 的 \(f_i\) 是 $5$,它们可以通过 \(p\) 算出来。 当 \(p=3\times 2^n\left(n>0\right)\) ...
分类:
其他好文 时间:
2020-09-18 01:15:09
阅读次数:
36
SQL 错误提示:多次为 'b' 指定了列'n' 错误原因:两个关联的表中有名字相同的列,如果要同时取到一张表中,会有冲突,这样就需要指定你取的是哪一个表中的列。 示例:( mm.* ) select *from test a left join (select mm.* from test2 mm ...
分类:
数据库 时间:
2020-09-18 01:14:53
阅读次数:
63
浮动是布局的时用到的一种技术,能够方便我们进行布局。 1、浮动的设置:css属性float:left/right/none 左浮动/右浮动/不浮动(默认) 2、浮动的原理:使当前元素脱离普通流,相当于浮动起来一样,浮动的框可以左右移动,直至它的外边缘遇到包含框或者另一个浮动框的边缘 3、浮动的影响: ...
分类:
Web程序 时间:
2020-09-18 01:08:19
阅读次数:
49
二叉树 C++风格二叉树节点 struct TreeNode { int val; TreeNode *left; TreeNode *right; TreeNode(int x) : val(x), left(NULL), right(NULL) {} }; 二叉树的前序遍历 前序遍历(VLR), ...
分类:
其他好文 时间:
2020-09-18 00:55:38
阅读次数:
29
分页查询 语法: select 查询列表 from 表 join type join 表 on 连接条件 where 筛选条件 group by 分组字段 having 分组后的筛选 order by 排序的字段 limit offset,size offset 要显示的起始索引(从0开始) siz ...
分类:
数据库 时间:
2020-09-17 23:25:50
阅读次数:
38