stringstring2binstring(stringstrSrc){if(strSrc.empty()){return"";}stringstrTemp="0x";stringstrDest;//去掉最开始的0x字符intiNumber=strSrc.find(strTemp);if(iNumber!=NO_FOUND){strSrc=strSrc.substr(2,strSrc.size(
分类:
其他好文 时间:
2020-09-17 23:19:09
阅读次数:
30
看A感觉不太会做。 B感觉是个差分约束。 C是个博弈论。 对sg函数打表后发现十分有规律。 但是后来发现游戏并不是公平游戏,不能做。 这浪费了很多时间。 以为是个surreal number,不太可做。 跳回A,画了很多图后发现了正解的结论。写了一个程序。 但是给了一些数据后发现锅了,经过一些思考后 ...
分类:
其他好文 时间:
2020-09-17 23:04:18
阅读次数:
21
You are playing the following Bulls and Cows game with your friend: You write down a number and ask your friend to guess what the number is. Each time ...
分类:
其他好文 时间:
2020-09-17 22:49:35
阅读次数:
38
1、测试常用配置 Number of Threads (users):模拟虚拟用户的个数 Ramp-up period (seconds) :上线所有Threads所用的时间。 Loop Count:每个Thread(user)请求url个数。(串行请求) 所以: 总请求次数 = Number of ...
分类:
其他好文 时间:
2020-09-17 22:12:01
阅读次数:
36
在开发过程中遇到一个比较ip大小的情况,并且遇到了把二维数组转为一维数组的情况,翻下资料,做下总结。 方法一:转字符串法 该例子中,tempArr是一个多维数组,使用join将其转为字符串,在使用split方法转换为一维数组。 缺点: 如果数组中的各个项是number,将不可避免的转为字符串。 /* ...
分类:
编程语言 时间:
2020-09-17 21:01:40
阅读次数:
41
selModel:{//键盘导航,false则键盘操作无效enableKeyNav:true,//选择模式SINGLE,SIMPLE,和MULTImode:‘MULTI‘,//点击checkbox框选中checkOnly:false,//在表头显示全选checkbox框showHeaderCheckbox:true,//复选框选择模式Ext.selection.CheckboxModelselTy
分类:
Web程序 时间:
2020-09-17 21:00:29
阅读次数:
54
Problem LeetCode Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where t ...
分类:
编程语言 时间:
2020-09-17 20:29:16
阅读次数:
30
针对特定拓扑的命令行快速创建 最小拓扑,1 台交换机下挂 2 台主机 $ sudo mn --topo minimal 简单拓扑,1 台交换机下挂 n 台主机,此处 n=3,n=2 即为最小拓扑 $ sudo mn --topo single,3 线性拓扑,交换机连成一线,每台交换机下挂 1 台主机 ...
分类:
Web程序 时间:
2020-09-17 20:05:36
阅读次数:
35
一个分页查询set statistics time on; -- 分页查询(通用型) select top pageSize * from (select row_number() over(order by sno asc) as rownumber,* from student) temp_ro ...
分类:
Web程序 时间:
2020-09-17 20:00:44
阅读次数:
39
--1)fetch的区别:--使用fetch cur 和 fetch next from cur 一样,因为NEXT 是 FETCH 的默认选项. --2)cursor和refcursor的区别:--静态游标,不能修改里面的语句--动态游标,可以多次open和close,指定不同的SQL--隐式游标 ...
分类:
数据库 时间:
2020-09-17 19:48:20
阅读次数:
52