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, ...
分类:
其他好文 时间:
2014-09-19 13:43:05
阅读次数:
194
彩色的贪吃蛇实现,功能强大,有等级模块,道具功能,后面有效果预览,先上代码:
console.h
#include
//颜色定义
#define FWHITE FOREGROUND_INTENSITY|FOREGROUND_RED|FOREGROUND_GREEN|FOREGROUND_BLUE //白色前景
#define FRED FOREGROUND_INTENSIT...
分类:
其他好文 时间:
2014-09-18 13:22:24
阅读次数:
276
[leetcode]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 0, 1, and 2 to represent the color red, white, and...
分类:
其他好文 时间:
2014-09-18 13:21:43
阅读次数:
164
半透明透明颜色和不透明度 (alpha) 值以十六进制表示法表示。任何一种颜色的值范围都是 0 到 255(00 到 ff)。对于 alpha,00 表示完全透明,ff 表示完全不透明。表达式顺序是“aabbggrr”,其中aa=alpha(00 到 ff);bb=blue(00 到 ff);gg=...
分类:
移动开发 时间:
2014-09-17 23:16:42
阅读次数:
216
public class TestEnum { /*最普通的枚举*/ public enum ColorSelect { red, green, yellow, blue; } /* 枚举也可以象一般的类一样添加方法和属性,你可以为它添加静态和非静态的属...
分类:
编程语言 时间:
2014-09-17 23:03:32
阅读次数:
230
package cn.rwkj.test;import java.io.IOException;import java.io.InputStream;import java.io.OutputStream;import java.io.PrintWriter;import java.net.Serv...
分类:
系统相关 时间:
2014-09-17 18:27:52
阅读次数:
291
package cn.rwkj.test;import java.io.IOException;import java.io.InputStream;import java.net.ServerSocket;import java.net.Socket;public class TestSocket...
分类:
系统相关 时间:
2014-09-17 18:17:02
阅读次数:
289
html代码jstest 测试div css代码@charset "utf-8";.red{width:100px; height:100px; background:#f00;}.blue{width:100px; height:100px; background: blue;...
分类:
编程语言 时间:
2014-09-17 00:58:01
阅读次数:
329