Connections in Galaxy War http://acm.zju.edu.cn/onlinejudge/showProblem.do?problemId=3563 In order to strengthen the defense ability, many stars in ga ...
分类:
其他好文 时间:
2018-11-12 14:58:15
阅读次数:
202
1.较精准定位 2.关于Appium+RF的轴表达式 child:选取当前节点的所有子元素 parent:选取当前节点的直接父元素 descendant:选取当前节点的所有后代元素 ancestor:选取当前节点的所有先辈元素 preceding:选取当前节点之前的所有节点 preceding-si ...
分类:
其他好文 时间:
2018-11-10 15:31:28
阅读次数:
160
1.^ 为匹配输入字符串的开始位置 2.[0-9]+匹配多个数字, [0-9] 匹配单个数字 3.+ 匹配一个或者多个。 4.$ 为匹配输入字符串的结束位置 ...
分类:
其他好文 时间:
2018-11-05 15:12:43
阅读次数:
98
1. 实例 ^ 匹配输入字符串的开始位置。 [0-9]+ 匹配多个数字, [0-9] 匹配单个数字,+ 匹配一个或者多个。 abc$ 匹配字母 abc 并以 abc 结尾,$ 为匹配输入字符串的结束位置。 ^ 匹配输入字符串的开始位置。 [0-9]+ 匹配多个数字, [0-9] 匹配单个数字,+ 匹 ...
分类:
其他好文 时间:
2018-11-04 19:20:34
阅读次数:
145
The lowest common ancestor (LCA) of two nodes U and V in a tree is the deepest node that has both U and V as descendants. A binary search tree (BST) i ...
分类:
其他好文 时间:
2018-11-02 23:39:33
阅读次数:
180
235. Lowest Common Ancestor of a Binary Search Tree 在一个二叉搜索树中找两个节点的最小公共父节点。 使用二叉搜索树的性质,设x是二叉搜索树中的一个结点。如果y是x左子树中的一个结点,那么会有y.key<=x.key;如果y是x右子树中的一个节点,那 ...
分类:
其他好文 时间:
2018-10-29 20:05:37
阅读次数:
139
Part IV Cloze(10%) Direction:There are 20 blanks in the following passage, and for each blank there are 4 choices marked A, B, C, D at the end of the ...
分类:
其他好文 时间:
2018-10-29 14:12:11
阅读次数:
231
Special Kinds of Methods Methods associated with a type rather than an instance of a type must be marked with the static declaration modifier for enum ...
分类:
编程语言 时间:
2018-10-26 16:17:56
阅读次数:
206