1.1RGB模式,ARGB模式及其运算1.1.1 RGB模式及其运算RGB是色光三原色(Red红,Green绿,Blue蓝)的简写,物理学上,自然界的所有颜色都可以分解为这三种色光。不同的颜色,色光的值会有所差别。反过来,任何颜色都可以通过红绿蓝三种色光合成出来。白色把任何色光都反射出来了,所以它的...
分类:
其他好文 时间:
2014-08-01 19:11:42
阅读次数:
268
Description:Given an input string, reverse the string word by word.For example,Given s = "the sky is blue",return "blue is sky the".Clarification:What...
分类:
其他好文 时间:
2014-08-01 04:38:31
阅读次数:
183
CSS3 :target伪类用来改变页面中锚链接URL所指向的ID样式,例如你要改变描链接指向#tab的元素字体颜色为蓝色,哪么你可以这样写成#tab:target {color:blue}浏览器支持:不支持IE8及以下的IE版本,IE9支持这个属性,其它非IE内核浏览器如:Firefox、Chro...
分类:
Web程序 时间:
2014-07-31 19:38:07
阅读次数:
205
今天初识css3看来JQuery高级编程要放到最后去看了。笔记:a:link{color:blue;}未访问a:visited{color:blue;}已访问a:hover{color:red;}悬浮a:active{color:yellow;}活动链接css代码格式p{css属性:属性值}border-radius:xxpx;(边框圆角)padding-(top,left,right,bottom):xxp..
分类:
Web程序 时间:
2014-07-31 10:00:36
阅读次数:
447
一、颜色名 大多数的浏览器都支持颜色名集合。 仅仅有 16 种颜色名被 W3C 的 HTML4.0 标准所支持。它们是:aqua, black, blue, fuchsia, gray, green, lime, maroon, navy, olive, purple, red, silver, ....
分类:
Web程序 时间:
2014-07-30 00:54:22
阅读次数:
394
问题描述:
Given an input string, reverse the string word by word.
For example,
Given s = "the sky is blue",
return "blue is sky the".
解题思路:
每遍历出一个单词时,将该单词添加一个空格字符(如果临时字符串为空,即扫描出第一个单词,就不要添加空格字符),然后添加...
分类:
其他好文 时间:
2014-07-29 21:52:52
阅读次数:
239
题目:Given an array with n objects colored red, white or blue, sort them so that objects of the same color are adjacent, with the colors in the order r....
分类:
编程语言 时间:
2014-07-28 11:34:20
阅读次数:
297
LeetCode: Reverse Words in a StringGiven an input string, reverse the string word by word. For example,Given s = "the sky is blue",return "blue is sky...
分类:
其他好文 时间:
2014-07-27 23:33:19
阅读次数:
173
1)enum提供了另一种创建符号常量的方式,可以代替const,还允许定义新类型,但有严格的限制;例:enum spectrum{red,orange,yellow,green,blue,violet,indigo,ultraviolet};//对应整数值0~7;spectrum band=blue...
分类:
其他好文 时间:
2014-07-27 09:38:52
阅读次数:
274
题意:输入N个DNA序列,每个DNA序列长度都为60。找到这些串的最长共有子序列。
注:若找不到,或最长子序列长度小于2,则输出no significant commonalities,否则输出最长公共子串,若长度相同输出字典序最小的
思路:暴力枚举第一个DNA序列的每一个子序列,用strstr()函数与其余的序列进行匹配...
分类:
其他好文 时间:
2014-07-26 02:50:36
阅读次数:
162