码迷,mamicode.com
首页 >  
搜索关键字:red    ( 13693个结果
解决各版本不同浏览器兼容行的CSS Hack
/* CSS属性级Hack */ color:red; /* 所有浏览器可识别*/ _color:red; /* 仅IE6 识别 */ *color:red; /* IE6、IE7 识别 */ +color:red; /* IE6、IE7 识别 */ *+color:red; /* IE6...
分类:Web程序   时间:2014-07-16 19:14:14    阅读次数:246
Sort Colors
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 red, white and blue. Here, we will use the integers ...
分类:其他好文   时间:2014-07-16 17:18:44    阅读次数:207
DFS深搜-Red and Black
DFS深搜-Red and Black 深搜,从一点向各处搜找到所有能走的地方。...
分类:其他好文   时间:2014-07-16 17:17:22    阅读次数:233
ACM第一天研究懂的AC代码——BFS问题解答——习题zoj2165
代码参考网址:http://blog.csdn.net/slience_perseverance/article/details/6706354试题分析:本题是研究red and black的一个标题,实际上可以通过深度优先搜索的方式进行查找。前后左右的方格只要不是红色的就可以进行计数那么最后可以到...
分类:其他好文   时间:2014-07-16 13:59:02    阅读次数:219
Unix/Linux环境C编程入门教程(24) MySQL 5.7.4 for Red Hat Enterprise 7(RHEL7)的安装
如今MySQL的一个变化用户可能不会注意到,那就是甲骨文已经开始重新架构MySQL的代码,使它大量的模块化。如软件解析器,优化和复制功能以模块化的形式被重写。该版本的查询性能得以大幅提升,比 MySQL 5.6 提升 1 倍。本文就是在最新发布的RHEL7上面 CentOS7上面安装MySQL 5.7.4的教程。...
分类:数据库   时间:2014-07-16 08:26:19    阅读次数:479
A - Red and Black(3.2.1)(搜索)
A - Red and Black(3.2.1) Time Limit:1000MS     Memory Limit:30000KB     64bit IO Format:%I64d & %I64u Submit Status Description There is a rectangular room, covered with square tiles...
分类:其他好文   时间:2014-07-15 10:28:09    阅读次数:229
通过JavaScript设置样式和jQuey设置样式,还有随机数抛出水果的习题
一:通过JavaScript的方式设置样式(:拿习题为例): var shuiguo = document.getElementById('fruit'); shuiguo.style.backgroundColor = 'Red'; //1 shuiguo.onclick = function (...
分类:编程语言   时间:2014-07-15 00:32:00    阅读次数:323
css 基础语法
元素选择器h1 {color:red; font-size:14px;}id选择器#sidebar { border: 1px dotted #000; padding: 10px; }类选择器.center {text-align: center}属性选择器//下面的例子为带有 ...
分类:Web程序   时间:2014-07-14 11:00:38    阅读次数:293
Graphics
C#中Graphics的画图代码【转】架上图片了你就可以在画板上涂改了啊我要写多几个字上去string str = "Baidu"; //写什么字?Font font = Font("宋体",30f); //字是什么样子的?Brush brush = Brushes.Red; //用红色涂上我的字吧...
分类:其他好文   时间:2014-07-13 19:45:20    阅读次数:298
CSS border边框取值
/*要想看到边框的颜色,就必须设置边框的样式,否则看不到效果。 border也可以简写:border:1px solid Red 意思是设置边框border宽度为1px,样式为solid,颜色为Red*/ .d1{ border-width:1px; border-style:solid;border-color:Red; background-color:Gr...
分类:Web程序   时间:2014-07-13 18:59:41    阅读次数:329
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!