码迷,mamicode.com
首页 >  
搜索关键字:gray    ( 1068个结果
CSS3 greyscale 滤镜实现
CSS:.gray { -webkit-filter: grayscale(100%); -moz-filter: grayscale(100%); -ms-filter: grayscale(100%); -o-filter: grayscale(100%); ...
分类:Web程序   时间:2015-05-29 17:13:20    阅读次数:270
URAL 2002. Test Task (阅读理解)
2002. Test Task Time limit: 0.5 second Memory limit: 64 MB It was an ordinary grim October morning. The sky was covered by heavy gray clouds. It was a little rainy. The rain drops fell on the...
分类:其他好文   时间:2015-05-25 20:27:31    阅读次数:217
Gray Code
public class Solution { public ArrayList grayCode(int n) { if(n==0){ ArrayList res = new ArrayList(); res.add(0); ...
分类:其他好文   时间:2015-05-22 07:03:59    阅读次数:144
Java for LeetCode 089 Gray Code
The gray code is a binary numeral system where two successive values differ in only one bit.Given a non-negative integer n representing the total numb...
分类:编程语言   时间:2015-05-20 01:56:53    阅读次数:188
[LeetCode-JAVA] Gray Code
题目:The gray code is a binary numeral system where two successive values differ in only one bit.Given a non-negative integernrepresenting the total num...
分类:编程语言   时间:2015-05-19 12:08:38    阅读次数:230
leetcode--Gray Code
题目描述 The gray code is a binary numeral system where two successive values differ in only one bit. Given a non-negative integer n representing the total number of bits in the code, print the se...
分类:其他好文   时间:2015-05-18 09:12:13    阅读次数:118
leetcode Ch3-DFS & Backtracking II
一、Gray Code 1 class Solution 2 { 3 public: 4 vector grayCode(int n) 5 { 6 vector result={0}; 7 if(n==0) return result; 8 ...
分类:其他好文   时间:2015-05-15 10:24:33    阅读次数:139
Gray Code
The gray code is a binary numeral system where two successive values differ in only one bit.Given a non-negative integernrepresenting the total number...
分类:其他好文   时间:2015-05-14 23:24:41    阅读次数:137
PHP菜鸟学习历程-2
1、dom操作,利用dom创建无序列表。并追加到body里边,里面要求至少有四个项目。2.给每个无序列表设置事件(dom2级),鼠标移入、移除,让鼠标当前行高亮显示 node.style.backgroundColor="gray"; node.style.backgroundColor="";
分类:Web程序   时间:2015-05-13 09:58:09    阅读次数:159
数据库 - 数据库恢复技术
事务定义Jim(James) Gray 詹姆斯·格雷 1998年图灵奖获得者 数据库技术和事务处理专家 二、事务的特性定义 一个数据库操作序列 一个不可分割的工作单位 恢复和并发控制的基本单位事务和程序比较 在关系数据库中,一个事务可以是一条或多条SQL语句,也可以包含一个或多个程序。 一个程序通常包含多个事务显式定义方式 BEGIN TRANSACTION...
分类:数据库   时间:2015-05-12 17:12:16    阅读次数:254
1068条   上一页 1 ... 89 90 91 92 93 ... 107 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!