原地址:http://blog.csdn.net/armoonwei/article/details/7032537Unity as a LibraryOnce you have eclipse installed and up to date you have to follow a few st...
分类:
移动开发 时间:
2014-07-16 19:26:21
阅读次数:
246
import java.util.HashMap;
import java.util.Map;
/**
* 创建日期: 2014-04-18 10:36:25
* 作者: 黄飞
* mail:huangfei8087@163.com 834865081@qq.com
* ©版权归作者所有
* */
public class ConverFromGBKToUTF8 {
public st...
分类:
编程语言 时间:
2014-07-14 18:15:14
阅读次数:
345
<?php//验证码类classp_w_picpath{protected$im;protected$img_width;protected$img_height;protected$img_type;//生成随机数staticpublicfunctionrandStr($n=4){if($n<=0){return‘‘;}$str=‘abcdefghijkmnpqrstuvwxyzABCDEFGHIJKMNPQRSTUVWXYZ0123456789‘;$str=substr(st..
分类:
Web程序 时间:
2014-07-14 12:16:07
阅读次数:
287
Thread类在命名空间System.Threading里定义。Thread的Priority有5种,AboveNormal、BelowNormal、Normal、Highest和Lowest。Thread构造函数,有Thread(new ThreadStart(method))。Thread有St...
分类:
编程语言 时间:
2014-07-13 22:14:09
阅读次数:
236
字典树查询
#include
#include
#include
using namespace std;
const int maxn = 30;
typedef struct Trie{
int v;
Trie *next[ maxn ];
}Trie;
Trie root;
void CreateTrie( char *str ){
int len = strlen( st...
分类:
其他好文 时间:
2014-07-13 17:17:39
阅读次数:
336
--******************************************************** --* 存储过程名:EXP_TO_BATCH --* 版本:1.0 --* 用途:批量导入报销(支持日常、加班、差旅、报销) --* 参数:当前用户ID 批号 --* 输出:O_ST...
分类:
其他好文 时间:
2014-07-13 11:52:28
阅读次数:
262
using System;using System.Drawing;using System.Windows.Forms;namespace zhbCapture{ /// /// Description of Utils. /// public class Utils { public st...
分类:
其他好文 时间:
2014-07-13 09:43:24
阅读次数:
193
ST算法即是sparse table算法,就是稀疏表的意思,就是利用二分法来划分一个表,划分为2的次方段,之后利用这个st表计算查询结果,可以使得预处理时间O(nlgn),而查询时间为O(1) ;
那么有人会有疑问,既然查询时间是O(1),那么为什么这个算法很多时候并不比线段树快多少,甚至根本没有快过呢?
因为其实查询时间为O(log(range)), range为查询区间的大小,因为...
分类:
其他好文 时间:
2014-07-12 20:35:55
阅读次数:
164
经验:支持”编译依存性最小化“的一般构想是:相依于声明式,不要相依于定义式。
基于此构想的两个手段是 Handle classes 和 Interface classes.
示例:相依于定义式
#include
#include "date.h"
#include "address.h"
class Person{
public:
Person(const std::string &name, const Data &birthday, const Address &addr);
st...
分类:
编程语言 时间:
2014-07-12 19:39:46
阅读次数:
347
st-link 在win8上的支持不太好,据说是因为 st-link 硬件没有数字签名,win8 强制要求硬件必须有数字签名。虽然平时还是用的盗版 jlink 比较多一点,但是手上这块 discovery 板子只有板载的 st-link。下载zadig 首先下载zadig,这是一个开源的win驱动,...
分类:
数据库 时间:
2014-07-12 14:47:00
阅读次数:
1285