题目 An army of ants walk on a horizontal pole of length l cm, each with a constant speed of 1 cm/s. When a walking ant reaches an end of the pole, it i ...
分类:
其他好文 时间:
2020-04-14 12:25:13
阅读次数:
52
vjudge题库 A-A 题目–> There is a pile of n wooden sticks. The length and weight of each stick are known in advance. The sticks are to be processed by a wo ...
分类:
其他好文 时间:
2020-04-14 09:15:36
阅读次数:
78
mybatis缓存: 从数据查询数据时,会把结果放入缓存池。 在没有对这个表进行修改操作时,调用同一个方法时,相同查询语句会直接读取缓存池中的结果。 当缓存池满时,会把最近没有被使用的缓存中的数据覆盖掉。(LRU least recently used); 其中主要使用了linkedHashMap ...
分类:
编程语言 时间:
2020-04-13 12:33:39
阅读次数:
70
export default (str) => { if (str.length < 1) return [] // 映射数组 const map = ['', 1, 'abc', 'def', 'ghi', 'jkl', 'mno', 'pqrs', 'tuv', 'wxyz']; if (str ...
分类:
Web程序 时间:
2020-04-13 11:59:31
阅读次数:
115
一、Boosting 1、Given the training data D = {$(x^{1},y^{1}),(x^{2},y^{2}),(x^{3},y^{3}),......(x^{m},y^{m})$} $x^{i}\in R^n$ $y\in (+1,-1)$ for each data ...
分类:
其他好文 时间:
2020-04-13 00:32:23
阅读次数:
75
Shapes大家族: 首先认识一下,在VBA里他们都叫shapes 示例:计算有多少个shape Sub test() MsgBox Sheet1.Shapes.Count End Sub shape属性 Sub test() Dim shp As Shape For Each shp In She ...
分类:
编程语言 时间:
2020-04-12 22:59:10
阅读次数:
157
Mybatis 动态 sql 可以在 Xml 映射文件内,以标签的形式编写动态 sql,执行原理 是根据表达式的值 完成逻辑判断并动态拼接 sql 的功能。 Mybatis 提供了 9 种动态 sql 标签:trim | where | set | foreach | if | choose | w ...
分类:
数据库 时间:
2020-04-12 20:32:58
阅读次数:
412
Which is better, ASP.NET, Java or PHP? It depends on what you want to achieve. Each has its advantages for a particular area. Source: http://Flickr.co ...
分类:
编程语言 时间:
2020-04-12 16:40:34
阅读次数:
71
var check_value = []; $('input[class="sel"]:checked').each(function (){ check_value.push($(this).val()); }); if(check_value.length==0){ alert('请先勾选您要设 ...
分类:
其他好文 时间:
2020-04-12 12:20:59
阅读次数:
93
Problem Description Give you the width and height of the rectangle,darw it. Input Input contains a number of test cases.For each case ,there are two n ...
分类:
其他好文 时间:
2020-04-11 23:29:43
阅读次数:
97