一个盒子实际所占有的宽度或高度是由"内容+内边距+边框+外边距"组成。 1.边框border边框的主要属性有三个,分别是:border-width:边框宽度、 border-style:边框样式、border-color:边框颜色。以上属性可以单个写,也可以写成:border:[border-wi....
分类:
Web程序 时间:
2014-07-16 21:32:26
阅读次数:
262
//设置窗体全屏getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN);//设置窗体始终点亮getWindow().setFlags(Wi...
分类:
移动开发 时间:
2014-07-16 21:06:34
阅读次数:
304
带着笔记本电脑出门虽然方便,但总是担心用到一半会没电,所以需要不时的关注一下剩余电量。偶然一次发现Win7任务栏右下角通知区域里的电池状态图标不见了,完全不知道电量用到什么程度,太没安全感。可是打开Win7通知区域图标管理,却看到电源选项处是灰色不可更改的,这是怎么回事?试试用下面的方法来解决。Wi...
分类:
其他好文 时间:
2014-07-16 20:14:50
阅读次数:
232
// 卡通效果 public static Bitmap changeToCarton(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int dst[] = new int[wi...
分类:
其他好文 时间:
2014-07-16 19:40:27
阅读次数:
158
// 铸融效果 public static Bitmap changeToMolten(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int dst[] = new int[wi...
分类:
其他好文 时间:
2014-07-16 19:36:35
阅读次数:
141
1 public class Solution { 2 public String get(String a,String b) 3 { 4 5 if(a==""||b=="") return ""; 6 int len1=a.le...
分类:
其他好文 时间:
2014-07-13 22:05:47
阅读次数:
238
一、制作linux引导盘1.格式化U盘:格式成FAT32格式2.安装syslinuxhttps://www.kernel.org/pub/linux/utils/boot/syslinux/下载相应版本将syslinux-4.04.zip解压到window下一个目录中,进入syslinux目录下wi...
分类:
其他好文 时间:
2014-07-13 00:53:41
阅读次数:
312
Given a string s, partition s such that every substring of the partition is a palindrome.
Return all possible palindrome partitioning of s.
For example, given s = "aab",
Return
[
["aa","...
分类:
其他好文 时间:
2014-07-12 23:21:30
阅读次数:
215
题目来源,待字闺中,原创@陈利人
,欢迎大家继续关注微信公众账号“待字闺中”
原题这个LIS问题,可不是Longest Increasing Subsequence,而是Largest Independent Set,含义如下:给定一棵二叉树,找到满足如下条件的最大节点集合:集合中的任意两个节点之间,都没有边。如下图:
LIS大小为5,为{10,40,60,70,8...
分类:
其他好文 时间:
2014-07-12 23:20:18
阅读次数:
267
String pathname = "E:\\workspace\\stanfordner\\sample.txt";
File filename = new File(pathname); // 要读取以上路径的input。txt文件
String query_id = filename.getName().substring(0,filename.getName().last...
分类:
编程语言 时间:
2014-07-12 20:05:29
阅读次数:
259