最近做题发现自己并不知道什么时候该用树套树,就来总结一下 一、静态整体kth 排序输出 sort(a+1,a+n+1); printf("%d\n",a[k]); 时间复杂度O(nlogn) 空间复杂度O(n) 二、动态整体kth 权值线段树+二分 查询时先查询左子树和sum,比较k和sum的大小: ...
分类:
其他好文 时间:
2021-06-13 10:21:17
阅读次数:
0
//es5 interface JSON { /** * Converts a JavaScript Object Notation (JSON) string into an object. * @param text A valid JSON string. * @param reviver A ...
分类:
Web程序 时间:
2021-06-13 10:19:00
阅读次数:
0
安装web插件,处理html, javascript, css等: Help菜单 --> Eclipse Marketplace --> 选择Popular页 选择安装Eclipse Enterprise Java and Web Developer Tools 安装springboot插件,在ID ...
分类:
编程语言 时间:
2021-06-13 09:45:16
阅读次数:
0
CTF中的命令执行绕过方式 0x01:管道符 在用linux命令时候,我们可以一行执行多条命令或者有条件的执行下一条命令,下面我们讲解一下linux命令分号&&和&,|和||的用法。 “;”分号用法 方式:command1 ; command2 用;号隔开每个命令, 每个命令按照从左到右的顺序,顺序 ...
分类:
其他好文 时间:
2021-06-13 09:43:21
阅读次数:
0
跑命令bedtools genomecov -ibam file.bam -bga -split -trackline > file.wig时出现的报错。 解决方案: samtools sort file.bam -T /tmep -o file.sorted.bam #/tmep指的是新建一个tm ...
分类:
其他好文 时间:
2021-06-13 09:43:05
阅读次数:
0
在实体类中添加@TableId注解: @Data public class DxApplication { @TableId(type = IdType.AUTO) private Long id; private String name; private Integer sort; } 在navi ...
分类:
其他好文 时间:
2021-06-11 18:35:34
阅读次数:
0
防抖 function debounce(fun,delay){ let timer = null return function(){ if(timer){ clearTimeout(timer) } timer = setTimeout(()=>{ fun.apply(this,argument ...
分类:
编程语言 时间:
2021-06-11 18:25:11
阅读次数:
0
一、10进制转其他进制(如2进制): console.log(num.toString(2)) 二、其他进制(如2进制)转10进制: console.log(parseInt(num,2)) ...
分类:
编程语言 时间:
2021-06-11 18:21:58
阅读次数:
0
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 4 typedef struct student { int id; /*学生学号 */ char name[20]; /*学生姓名 */ char subject[2 ...
分类:
其他好文 时间:
2021-06-11 18:15:08
阅读次数:
0
javaScript中的Promise Promise的概述 Promise是异步编程的一种解决方案,可以替代传统的解决方案--回调函数和事件 Promise有一下两个特点: 对象的状态不受外界影响。 一旦状态改变了就不会在变,也就是说任何时候Promise都只有一种状态。 Promise状态 Pe ...
分类:
编程语言 时间:
2021-06-10 18:52:18
阅读次数:
0