码迷,mamicode.com
首页 >  
搜索关键字:nim or not nim    ( 2819个结果
2017.12.13T19_B2_6.4内部类
package com.xdf.demo; /** * 匿名内部类 */public interface Animal { /** * 所有动物吃饭的方法 */ void eat();}*************************************** package com.xdf.d ...
分类:其他好文   时间:2017-12-13 14:55:18    阅读次数:103
2017.12.13T19_B2_6.3内部类
package com.xdf.demo; public abstract class Animal { // 所有动物的父类 private String name; // 姓名 private String strain; // 品种 private char sex; // 性别 /** * ...
分类:其他好文   时间:2017-12-13 14:42:11    阅读次数:153
强大的svg操作库——Raphael
先常规先引入Raphael库: 然后就很简单了,直接操作,也不用再手动写svg什么的。 1.新建画布 2.建立图形 3.改变图形属性和样式 4.图形绑定事件 事件大概有click、hover、mousedown、mousedown、mousemove、mouseup、touchstart、touch ...
分类:其他好文   时间:2017-12-12 21:36:25    阅读次数:311
2017.12.1T19_B2_4zuoye
package com.whxiong.work04; public abstract class Animal { private int age; public Animal(int age){ this.age=age; } public int getAge() { return age;  ...
分类:其他好文   时间:2017-12-11 11:29:11    阅读次数:179
POJ 1021 2D-Nim
Description The 2D-Nim board game is played on a grid, with pieces on the grid points. On each move, a player may remove any positive number of contig ...
分类:其他好文   时间:2017-12-10 23:01:59    阅读次数:219
【Paper Reading】Deep Supervised Hashing for fast Image Retrieval
what has been done: This paper proposed a novel Deep Supervised Hashing method to learn a compact similarity-presevering binary code for the huge body ...
分类:其他好文   时间:2017-12-10 21:29:20    阅读次数:207
Java StringBuffer 和 StringBuilder 类
Java StringBuffer 和 StringBuilder 类 当对字符串进行修改的时候,需要使用 StringBuffer 和 StringBuilder 类。 和 String 类不同的是,StringBuffer 和 StringBuilder 类的对象能够被多次的修改,并且不产生新的 ...
分类:编程语言   时间:2017-12-09 15:51:08    阅读次数:197
安装centos7后不能联网
我们在安装centos的minimal版本后,在使用yum安装工具时会提示:cannot find a valid baseurl or repo:base/7/x86_64 这是因为不能联网导致的,以下是解决方法: 方法一: 方法二: 以上两种方法均可。 ...
分类:其他好文   时间:2017-12-08 01:14:27    阅读次数:176
Leetcode 310: Minimum Height Trees
For a undirected graph with tree characteristics, we can choose any node as the root. The result graph is then a rooted tree. Among all possible roote ...
分类:其他好文   时间:2017-12-07 13:16:08    阅读次数:138
登陆界面背景动画的css样式
为了达到更好的用户体验,登陆界面需要设计多张背景图进行动态切换 ...
分类:Web程序   时间:2017-12-06 12:58:21    阅读次数:157
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!