家里笔记本40G,可用空间怎么挤都只剩7G,从单位copy回来的linux虚拟机要10G,经检查实际使用空间5.7,也就是其他都是空余空间,可以释放掉。(只适合independent.Persistent,不适合preallocated ,ext4文件系统无效) 释放方法有如下几种 for lin....
分类:
系统相关 时间:
2015-05-17 00:37:27
阅读次数:
519
地址:https://oj.leetcode.com/problems/maximal-rectangle/Given a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all ones...
分类:
其他好文 时间:
2015-05-16 11:54:21
阅读次数:
176
题目Given a 2D binary matrix filled with 0’s and 1’s, find the largest rectangle containing all ones and return its area.思路对于上图的一个01矩阵。我们可以一行一行的分析,假设第三行,我们按列扫描,遇到0时,柱子断开,重新形成柱子,遇到1时柱子高度加一。这样的话,我们就可以把问题转换...
分类:
其他好文 时间:
2015-05-14 22:05:23
阅读次数:
137
1. dip: device independent pixels(设备独立像素). 不同设备有不同的显示效果,这个和设备硬件有关,一般我们为了支持WVGA、HVGA和QVGA 推荐使用这 这个,不依赖像素。 这里要特别注意dip与屏幕密度有关,而屏幕密度又与具体的硬件有关,硬件设置不正确,有可能导...
分类:
移动开发 时间:
2015-05-14 09:56:36
阅读次数:
122
首先了解几个概念px,dip(dp),sp,dpi,分辨率等1.px (pixels)像素 –是像素,就是屏幕上实际的像素点单位。dip或dp (device independent pixels)设备独立像素, 与设备屏幕有关。sp (scaled pixels — best for text s...
分类:
移动开发 时间:
2015-05-11 19:59:11
阅读次数:
141
dip: Device Independent Pixels(设备独立像素). 不同设备有不同的显示效果,这个和设备硬件有关,一般我们为了支持WVGA、HVGA和QVGA推荐使用这个,不依赖像素。px: pixels(像素). 不同设备显示效果相同,一般我们HVGA代表320x480像素,这个用的比...
分类:
其他好文 时间:
2015-05-07 20:27:54
阅读次数:
132
请声明出处:
Socket,网络套接字的类,包括创建、绑定、监听、接受、发送、接收等操作:
/**
* This class encapsulates a system dependent socket in a system independent abstraction
* 这个类封装了一个依赖于系统的套接字系统独立的抽象
* @short A generic socket clas...
1.常见的单位 dip, dp, px, sp之间的区别:dip: device independent pixels(设备独立像素). 不同设备有不同的显示效果,这个和设备硬件有关,一般我们为了支持WVGA、HVGA和QVGA 推荐使用这个,不依赖像素。px: pixels(像素). 不同设备显示...
分类:
Web程序 时间:
2015-05-06 14:40:48
阅读次数:
988
SND是未来P4 =Programming Protocol-Independent Packet Processors官网:http://www.p4.org/index.htmlp4 paperhttp://arxiv.org/pdf/1312.1719.pdfABSTRACT(摘要)P4 is...
分类:
编程语言 时间:
2015-04-30 06:21:24
阅读次数:
329
14.1.1 命令式代码的并行化在命令式编程中,for 循环可能是很容易并行化的最常见结构。循环的迭代器独立(independent)时,就可以在单独的线程上执行。就是说,由于独立,迭代器不会依赖前面任何迭代器所计算的值。
例如,统计数组中元素时,要计算下一个元素,就需要统计前面元素的总和。(这仍可以并行,但是不那么简单。)回想一下我们在第十章实现的“模糊”数组的函数,非常适合并行化:虽然每次迭代...
分类:
其他好文 时间:
2015-04-26 10:55:20
阅读次数:
145