df -lh lsof | grep delete kill -9 $program_id df -lh # 搞定问题
分类:
其他好文 时间:
2016-02-07 21:18:20
阅读次数:
246
Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T. The same repeat
分类:
其他好文 时间:
2016-02-07 17:25:25
阅读次数:
223
EN: It's easy to find out where is the bug : .text:0000000000400DE4 ; void *start_routine(void *).text:0000000000400DE4 start_routine proc near ; DATA
分类:
其他好文 时间:
2016-02-07 17:25:22
阅读次数:
253
Given a sorted array of integers, find the starting and ending position of a given target value. Your algorithm's runtime complexity must be in the or
分类:
其他好文 时间:
2016-02-07 13:35:21
阅读次数:
219
关于Unable to find vcvarsall.bat问题解决方案: 系统:win10(64位); python版本:3.5.2(32位) vs版本:visual studio 2013 背景:学了python一周,做机器学习,因为要用python调用java包(HanLP),所以需要安装JP
分类:
其他好文 时间:
2016-02-07 02:21:44
阅读次数:
222
grep,egrep,fgrep:文本查找文件查找:locate: 非实时,模糊匹配,查找是根据全系统文件数据库进行的;#updatedb,手动生成文件数据库速度快find: 实时 精确 支持众多查找标准 遍历指定目录中的所有文件完成查找,速度慢; find查找路径查找标准查找到以后的处理运作查找路径:..
分类:
其他好文 时间:
2016-02-06 22:28:35
阅读次数:
299
Given a string containing just the characters '(' and ')', find the length of the longest valid (well-formed) parentheses substring. For "(()", the lo
分类:
其他好文 时间:
2016-02-06 22:22:13
阅读次数:
174
题目Given a string, find the length of the longest substring without repeating characters. For example, the longest substring without repeating letters
分类:
其他好文 时间:
2016-02-06 14:11:21
阅读次数:
131
题目描述: Given an array of integers and an integer k, find out whether there are two distinct indices i and j in the array such that nums[i] = nums[j] an
分类:
编程语言 时间:
2016-02-05 22:21:07
阅读次数:
253
题目链接 一道水题 把一个人分为两种人格:作为朋友时(i);作为敌人时(i+n) 拆点并查集维护关系 注意统计答案时要先find之后取个数而不是找fa[i]==i(1<=i<=n)的个数 因为一些人只作为敌人出现过所以find的结果可能是作为敌人的人格就统计不到,所以要先find 1 #includ
分类:
其他好文 时间:
2016-02-05 22:16:27
阅读次数:
202