错误信息: ????? 项目名称?could not be redeployed because it could not be completely removed inthe undeployment phase. The most common cause of this problem is attempting to redeploy while th...
分类:
系统相关 时间:
2014-10-24 19:15:48
阅读次数:
357
一个int占多少个字节?这个问题我们往往得到的答案是4.可是int究竟占多少个字节,却跟你的机器环境有关.As you can see, the typical data type sizes match the ILP32LL model, which is what most compilers...
分类:
其他好文 时间:
2014-10-24 18:49:16
阅读次数:
137
FASTSOCKETIt looks like there are like 3 separate optimizations, but I think the most important one is the "enable_listen_spawn" feature. Here is how ...
分类:
其他好文 时间:
2014-10-23 22:19:50
阅读次数:
256
Mineral Water
Time Limit: 1000ms Memory limit: 65536K 有疑问?点这里^_^
题目描述
Laoshan mineral water is one of famous well-known mineral water, Tyrant(means”Tu Hao”) Chierush liked to d...
分类:
其他好文 时间:
2014-10-23 17:40:59
阅读次数:
210
import collections注意 counter用的时候要大写,Counter是说统计一个List中的对象出现的次数,然后以Counter的形式返回例如http://stackoverflow.com/questions/3172173/most-efficient-way-to-calcu...
分类:
编程语言 时间:
2014-10-23 16:15:19
阅读次数:
203
[leetcode]Container With Most Water...
分类:
其他好文 时间:
2014-10-22 11:00:53
阅读次数:
131
1.We are what we repeatedly do. Excellence, then, is not an act, but a habit.————我们重复做什么,就会成为什么样的人。优秀不是一个行为,而是一个习惯!2.On the road, is often the most no...
分类:
其他好文 时间:
2014-10-22 10:44:57
阅读次数:
204
[leetcode]Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining....
分类:
移动开发 时间:
2014-10-22 10:05:30
阅读次数:
248
题目大意:给出一个岛的海岸线的轮廓,求这个岛上的所有点到海岸的最长距离是多少。
思路:求多边形内切圆的问题要用二分+半平面交解决。二分半径的长度,然后将所有的边向左侧移动这个二分的长度,然后利用半平面交来判断是否能够满足条件。如果满足条件就提高下界,否则减小上界。
我的移动的方法是这样的,首先每条边都要用点向量式来表示,就是边上任意一点和这条边的方向向量。这样做以后的操作会方便很多。然...
分类:
其他好文 时间:
2014-10-21 13:52:52
阅读次数:
139
题意:给出一个凸n边形,求多边形内部一点使得该点到边的最小距离最大。分析:最小值最大可以用二分。多边形每条边的左边是一个半平面,将这n个半平面向左移动距离x,则将这个凸多边形缩小了。如果这n个半平面交非空,则存在这样距离为x的点,反之则不存在。半平面交的代码还没有完全理解。和凸包类似,先对这些半平面...
分类:
其他好文 时间:
2014-10-21 11:52:38
阅读次数:
152