总时间限制: 1000ms 内存限制: 65536kB 描述 Urej loves to play various types of dull games. He usually asks other people to play with him. He says that playing tho ...
分类:
其他好文 时间:
2019-04-28 12:36:38
阅读次数:
302
A Binary Search Tree (BST) is recursively defined as a binary tree which has the following properties: The left subtree of a node contains only nodes ...
分类:
其他好文 时间:
2019-04-26 22:52:19
阅读次数:
107
1、设置value为pxx的项选中 $(".selector").val("pxx"); 2、设置text为pxx的项选中 $(".selector").find("option:contains('pxx')").attr("selected",true); ...
分类:
Web程序 时间:
2019-04-25 16:09:15
阅读次数:
156
ASP.NET Core 有内置的log组件,遗憾的是看了微软官方文档,貌似无法直接将日志存于文件或数据库,只能由自己实现或引用第三方日志组件。 以下为Nlog和log4net的使用记录 Nlog使用 搜索添加Nuget包 搜索添加Nuget包 新建一个xml文件,并改名为nlog.config 新 ...
分类:
Web程序 时间:
2019-04-25 01:01:11
阅读次数:
198
mongoDB大于小于符号对应: > 大于 $gt< 小于 $lt>= 大于等于 $gte<= 小于等于 $lte要查询同一个时间多个约束可能出现的error: org.springframework.data.mongodb.InvalidMongoDbApiUsageException: Due ...
分类:
数据库 时间:
2019-04-25 00:50:33
阅读次数:
3414
一 介绍 二 安装 三 基本使用 四 选择器 五 等待元素被夹在 元素交互操作 其他 项目联 一 介绍 二 安装 1、有界面浏览器 2、无界面浏览器 PhantomJS不再更新 #安装:selenium+phantomjs pip3 install selenium 下载phantomjs,解压后把 ...
分类:
其他好文 时间:
2019-04-24 12:07:55
阅读次数:
94
Description The Kingdom of Kremland is a tree (a connected undirected graph without cycles) consisting of $n$ vertices. Each vertex $i$ has its own va ...
分类:
其他好文 时间:
2019-04-22 20:57:58
阅读次数:
205
The set [1,2,3,...,n] contains a total of n! unique permutations.By listing and labeling all of the permutations in order, we get the following sequen ...
分类:
其他好文 时间:
2019-04-21 20:01:16
阅读次数:
156
1.获取Windows下的IP java.net.InetAddress.getLocalHost().getHostAddress(); 2.获取linux下的IP /** * 获取Linux下的IP地址 * * @return IP地址 * @throws SocketException */ ... ...