package com.yc.util;
import java.io.IOException;
import java.sql.SQLException;
import java.util.Collection;
import java.util.Date;
import java.util.Enumeration;
import java.util.HashMap;
im...
分类:
Web程序 时间:
2015-05-12 23:07:50
阅读次数:
203
Unity3D Compute shader 新解粒子堆积矩阵【二】1.Compute Shader都出来了好些年了,幸好Unity3D 加入了该特性,当然U3D本着易开发操作平台,在u3d中实现compute shader起来是相当轻松的。2.除了Compute Shader,还有 Vertex shader,Geometry shader,Fragment shader ; Tesselatio...
分类:
编程语言 时间:
2015-05-12 23:09:44
阅读次数:
358
Given an array and a value, remove all instances of that value in place and return the new length.
The order of elements can be changed. It doesn't matter what you leave beyond the new length....
分类:
其他好文 时间:
2015-05-12 23:08:04
阅读次数:
161
场景(Scene)以及所有节点(Node)的生命周期事件如下:enter。进入场景时候触发。enterTransitionFinish。进入场景而且过渡动画结束时候触发。exit。退出场景时候触发 。exitTransitionDidStart。退出场景而且开始过渡动画时候触发。cleanup。场景对象被清除时候触发。提示 GameScene场景中的(Scene)继承于节点(Node),这些生命...
分类:
其他好文 时间:
2015-05-12 23:06:08
阅读次数:
206
Note:这学期修了严厉的Mr.J的编译原理,不定期更新笔记!
欢迎指正!TEST 语言的词法规:
标识符:字母打头,后接任意字母或数字
保留字:标识符的子集,包括:if,else,for,while,do, int,write,read,
无符号整数:由数字组成,但最高位不能为0,允许一位的0,
分界符:(、)、;、{、}
运算符:+、-、*、/、=、、>=、<=、!=、==
注释符:/*...
分类:
其他好文 时间:
2015-05-12 23:08:39
阅读次数:
178
c11对线程进行了支持。
遇到问题
1.eclipse不能启动,报错如下
eclipse启动不了 java was started but returned exit code=13
jdk 和eclipse软件不兼容,都选64位,解决
2.编译显示不支持c11
"This file requires compiler
and library support f...
out参数与c++的引用的对比out参数可以用来传递方法返回值,与c++中的引用有点像,但是还有有些不同:
- 调用方法的时候必须写out参数
- 调用方法之前必须先分配空间
- 调用方法之前不用先赋值.
- 必须在方法内部对out参数赋值;下面自己实现一个tryparse函数using System;
using System.Collection...
Destroy Tunnels
Description
Zuosige always has bad luck. Recently, he is in hospital because of pneu...
分类:
其他好文 时间:
2015-05-12 23:07:33
阅读次数:
169
Given an array and a value, remove all instances of that value in place and return the new length.The order of elements can be changed. It doesn’t matter what you leave beyond the new length.
//在数组中移...
分类:
其他好文 时间:
2015-05-12 23:07:29
阅读次数:
126
linux多进程并发,详细讲解优化shell执行顺序的方案,结论...
分类:
系统相关 时间:
2015-05-12 23:07:40
阅读次数:
222
经典题目了....虽然只有一个不能出现的字符串,但还是写了ac自动机
1009: [HNOI2008]GT考试
Time Limit: 1 Sec Memory Limit: 162 MB
Submit: 2051 Solved: 1257
[Submit][Status][Discuss]
Description
阿申准备报名参加GT考试,准考证号为N位数X1X2.....
分类:
其他好文 时间:
2015-05-12 23:05:18
阅读次数:
190
//dp[i][j] 表示前i个数中有j段,得到的最大值
//dp[i][j] = max(dp[i-1][j] , dp[i-1][j-1]) + a[i]
//注意dp[i-1][j-1]为前i-1个点中不含i-1这个点得到的最优解
//dp[i-1][j]中必须要有i-1中这个点
#include
#include
#include
using namespace std ;
...
分类:
其他好文 时间:
2015-05-12 23:06:08
阅读次数:
107
linux 下安装 postgresql 数据库...
分类:
数据库 时间:
2015-05-12 23:06:58
阅读次数:
263
C#制表符过滤处理方法,动态替换字符串里面的制表符。 ///
/// Descrioption:
///需要替换字符集合,可参见MSDN
/// The Trim method only trims 0x0009, 0x000a, 0x000b, 0x000c, 0x000d, 0x0085, 0x2028, and 0x2029.
/// This arr...
关于复合模式:
在形式上,复合模式确实是多个模式的组合,但满足了这一条并不一定是复合模式,注意它的定义:将多个模式结合起来形成一个“框架”,以解决一般性问题
一提到“框架”,可能最容易联想到的就是MVC吧,不过MVC确实是一个经典的复合模式
在进去MVC模式之前 先看一个简单的例子:
例子来自Headfrist 设计模式中的经典鸭鸣:有四种鸭...
分类:
编程语言 时间:
2015-05-12 23:05:27
阅读次数:
238