上篇-Android本地化资源目录详解:http://www.cnblogs.com/stafen/p/3833048.html单位: px(像素):屏幕上的点。 in(英寸):长度单位。 mm(毫米):长度单位。 pt(磅):1/72英寸。 dp/dip(与密度无关的像素):一种基于屏幕...
分类:
移动开发 时间:
2014-07-11 22:27:58
阅读次数:
483
以下以 IE 代替 Internet Explorer,以 MF 代替 Mozzila Firefox 0、px的问题obj.style.left = ”100px”;obj.style.top = ”100px”;千万要记得写上px,否则在Firefox上面两句无效!!1. document.fo...
分类:
Web程序 时间:
2014-07-11 18:00:36
阅读次数:
237
获取元素的宽度: 如果用$(ele).attr("width")获取的值不带px 如果用$(ele).css("width")获取的值带px//获取鼠标坐标 $(function() { $("#Button2").click(function(event) { alert(event.pageX....
分类:
Web程序 时间:
2014-07-11 12:23:10
阅读次数:
274
package com.lengxiaocai.myutil.screentool;
import android.content.Context;
/**
*
* @ClassName: ScreenTool
*
* @Description: 屏幕像素检测
*
* @author yazhizhao
*
* @date 2014-5-6 上午11:47:07
*/...
分类:
移动开发 时间:
2014-07-10 23:40:58
阅读次数:
340
sass功能强大,特别是支持for循环,节省大量开发时间,但是在开发时遇到一个问题,直接使用%时没有问题,当有变量时再加% 单位在编译时报错;这样没有问题:@for $width from 0 to 10{ .wp#{$width}{ width:$width px; }}...
分类:
其他好文 时间:
2014-07-09 22:59:13
阅读次数:
200
Given an image represented by an NxN matrix, where each pixel in the image is 4 bytes, write a method to rotate the image by 90 degrees. Can you do th...
分类:
其他好文 时间:
2014-07-08 22:06:25
阅读次数:
222
C++ 类中的静态变量
静态数据成员:
下面看一个例子:
#include
class Point
{
public:
void output()
{
}
static void init()
{
}
};
void main( void )
{
Point pt;
pt.init();
pt.output();
}
这样编译是不会有任何错...
分类:
编程语言 时间:
2014-07-08 21:11:37
阅读次数:
179
IArea area = feature.Shape as IArea;IPoint pt=area.Centroid;//中心点
分类:
其他好文 时间:
2014-07-06 16:00:44
阅读次数:
163
ZOJ 3551 Bloodsucker (概率DP)
题目大意:
有 n-1 个人 和 1 个吸血鬼,然后每天有且只有会有两个相遇(可能是人和人,吸血鬼和吸血鬼,人和吸血鬼),当人和吸血鬼相遇时,被感染为吸血鬼的概率为p,问你全部变为吸血鬼的天数的数学期望。
解题思路:
用DP[i]记录还有i个人的时候,全部变为所需要的天数的期望,则:
令 px 表示 C(i,1)*C(n-i,1)/C(n,2)*p , 也就是 选出1个吸血鬼1个人并且并传染的概率
则: DP[n-i]= 1 + px*DP[...
分类:
其他好文 时间:
2014-07-06 12:45:27
阅读次数:
162
(清除未浮动元素左右浮动) clear:both
(清除当前浮动的元素左右浮动) overflow:hidden overflow:auto zoom:1px(IE) _height: px;(IE6)...
分类:
其他好文 时间:
2014-07-06 11:42:05
阅读次数:
220