问题的现象:通过使用 Ctrl + Shift + F 也就是Find In Files功能,使用之后只能显示统计结果,不显示具体行.如下图 regedit 中在注册表中查找:HKEY_CLASSES_ROOT\Wow6432Node\CLSID\{73B7DC00-F498-4ABD-AB79-D ...
分类:
其他好文 时间:
2016-10-29 11:33:09
阅读次数:
306
Given an integer matrix, find the length of the longest increasing path. From each cell, you can either move to four directions: left, right, up or do ...
分类:
其他好文 时间:
2016-10-29 07:51:49
阅读次数:
226
You are given n segments on a line. There are no ends of some segments that coincide. For each segment find the number of segments it contains. You ar ...
分类:
其他好文 时间:
2016-10-28 23:17:13
阅读次数:
275
自学python网络爬虫,发现request比urllib还是要好用一些,因此利用request和BeautifulSoup来实现糗百的首页笑话的抓取。BeautifulSoup通过find和findAll以及利用正则表达式实现HTML对应模块的抓取,当然select也是一个不错的选择。下面是临时的 ...
分类:
编程语言 时间:
2016-10-28 22:31:08
阅读次数:
204
用IDEA新建了一个测试MyBatis工程,工程目录如下 其中config是MyBatis的配置文件,内容如下 编译时提示错误 Error parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find res ...
分类:
其他好文 时间:
2016-10-28 15:28:51
阅读次数:
486
Given an array of integers, every element appears twice except for one. Find that single one. java(8ms):排序,然后跟相邻数字都不同的就是single one java(1ms):相同的数异或后为0 ...
分类:
其他好文 时间:
2016-10-28 02:45:40
阅读次数:
130
Given a set of words (without duplicates), find all word squares you can build from them. A sequence of words forms a valid word square if the kth row ...
分类:
其他好文 时间:
2016-10-28 02:42:37
阅读次数:
195
There are n circles on a infinitely large table.With every two circle, either one contains another or isolates from the other.They are never crossed n ...
分类:
其他好文 时间:
2016-10-27 23:21:21
阅读次数:
303
在linux下面工作,有些命令能够大大提高效率。 比如说find命令,他哥俩可以算是必会的linux命令,几乎每天都要用到他们。 find命令 find命令的一般形式 find命令的常用选项及实例 find与xargs find命令的一般形式 find命令的常用选项及实例 find与xargs 一、 ...
分类:
系统相关 时间:
2016-10-27 13:23:17
阅读次数:
305