自己写的一个小插件,还有很多需要完善。。。(function ($) { $.fn.StartLoading = function (option) { var defaultVal = { loadgif: 'image/loading.gif', backcolor: 'white', pich...
分类:
其他好文 时间:
2014-10-11 17:08:55
阅读次数:
178
using (Bitmap bit = new Bitmap(60, 20)) { Graphics g = Graphics.FromImage(bit); g.FillRectangle(Brushes.White...
分类:
其他好文 时间:
2014-10-11 14:16:05
阅读次数:
208
white-space:nowrap; text-overflow:ellipsis; overflow: hidden; clip [不显示省略标记(...),而是简单的裁切], ellipsis [当对象内文本溢出时显示省略标记(...)。
分类:
Web程序 时间:
2014-10-10 19:30:24
阅读次数:
214
编写Python或Ruby代码的时候,比较在意行末空格,估计是代码洁癖、强迫症使然,看到多余的行末空格就浑身不自在。Sublime Text 2神器要解决这个问题简直就是小意思,在Settings - User中添加以下设置行:"trim_trailing_white_space_on_save":...
分类:
其他好文 时间:
2014-10-09 18:30:37
阅读次数:
170
We saw the little game Marmot made for Mole's lunch. Now it's Marmot's dinner time and, as we all know, Marmot eats flowers. At every dinner he eats some red and white flowers. Therefore a dinner can...
分类:
其他好文 时间:
2014-10-08 16:47:45
阅读次数:
229
1.常规css方法——可以实现IE,Safari,chrome,opera浏览器下文字溢出省略号表示这是一段测试文字,主要是用来测试文字溢出后是否会用….zxx_text_overflow_1{width:27em; white-space:nowrap; text-overflow:ellipsi...
分类:
其他好文 时间:
2014-10-08 13:34:35
阅读次数:
442
Given an array withnobjects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order red, .....
分类:
其他好文 时间:
2014-10-06 15:15:50
阅读次数:
146
Given a stringsand a dictionary of wordsdict, add spaces insto construct a sentence where each word is a valid dictionary word.Return all such possibl...
分类:
其他好文 时间:
2014-10-05 17:44:58
阅读次数:
201
1、利用php gd库的函数绘制3D扇形统计图
1: <?php
2: header("content-type","text/html;charset=utf-8");
3: /*扇形统计图*/
4: $image = imagecreatetruecolor(100, 100); /*创建画布*/
5:
6: /*设置画布需要的颜色*/
7: $white = imagecolorallocate($image,0xff,0xff,0xff)...
分类:
Web程序 时间:
2014-10-03 02:49:34
阅读次数:
315
题目连接:hdu 3911 Black And White
题目大意:给定一个序列,然后有M次操作;
0 l r:表示询问l,r中最大连续1的个数1 l r:表示将l,r区间上的数取反
解题思路:线段树的一种题型,区间合并,因为有一个取反的操作,所以对于每个节点要维护6个值,包括连续0,1最长序列的长度,左边和右边的最长连续长度。需要注意的是,如果询问的区间最大值是从R[lson...
分类:
其他好文 时间:
2014-09-28 14:26:53
阅读次数:
174