David Hayden blogged about a cool new ROW_NUMBER() function that SQL 2005 provides that got me excited and inspired to write a little code last night. ...
分类:
Web程序 时间:
2020-07-13 09:20:41
阅读次数:
76
Welcome!!! to my presentation !, About friendship, and growth. When i was little(靠过来正式), i used to make many friends. no matter who they are!, we can ...
分类:
其他好文 时间:
2020-06-29 00:51:57
阅读次数:
104
Welcome!!! to my presentation !, About friendship, and growth. When i was little(靠过来正式), i used to make many friends. no matter who they are!, we can ...
分类:
其他好文 时间:
2020-06-29 00:25:26
阅读次数:
77
There is a game called "I Wanna Be the Guy", consisting of n levels. Little X and his friend Little Y are addicted to the game. Each of them wants to ...
分类:
其他好文 时间:
2020-06-27 21:41:11
阅读次数:
90
莫队算法~练习一 gym卡了莫队,于是趁这个机会学一下莫队 莫队的核心是分块排序,这种特殊的排序方法将任务按排序后的顺序完成,可以在解决绝大多数无修改的离线区间问题中极大的优化时间(优化了$\sqrt n$左右)。 Sona NBUT - 1457 题意:n个数,寻问10000次,任意区间内的相等数 ...
分类:
编程语言 时间:
2020-06-26 14:25:50
阅读次数:
58
<span>标签:能让某几个文字或者某个词语凸显出来 <p>享受<span class="show">“北大式”</span>教育服务</p> <p>在北大青鸟,有一群人默默支持你成就 <span id="dream">IT梦想</span></p> <p class="bird">选择<span> ...
分类:
Web程序 时间:
2020-06-21 23:41:27
阅读次数:
123
1 注释:写注释是为了帮助理解代码里面比较难得一部分内容,不是没一行代码都需要写注释 2 字符串创建:单引号双引号都可以,但在python中,比较短的字符串的创建一般用单引号 3 代码: print("Mary had a little lamb.") # 输出“玛丽有一只小羊羔” print("I ...
分类:
其他好文 时间:
2020-06-19 23:06:38
阅读次数:
72
1 interface Bird{ 2 fly:boolean; 3 sing:()=>{} 4 } 5 interface Dog{ 6 fly:boolean; 7 bark:()=>{} 8 } 9 //不会提示sing和bark方法需要判断,直接使用会报错 10 //两种常用方法:一种用 a ...
分类:
其他好文 时间:
2020-06-17 01:29:04
阅读次数:
74
概述 Metasploitable3是Metasploitable2的升级版本,它是一个虚拟靶机系统,里面含有大量未被修复的安全漏洞,它主要是用于metasploit-framework测试的漏洞目标。众所周知Metasploitable2由于年久失修,被更好的Metasploitable3给取代了 ...
分类:
Web程序 时间:
2020-06-16 13:01:08
阅读次数:
84
做多网络流之后来个期望水一发 Description link 有一个 $1 \sim n$ 的排列,会进行 \(m\) 次操作,操作为交换 \(a,b\)。每次操作都有 $50%$ 的概率进行。 求进行 \(m\) 次操作以后的期望逆序对个数。 \(n,m\le 1000\) Solution 首 ...
分类:
其他好文 时间:
2020-06-13 17:48:36
阅读次数:
90