Dungeon MasterTime Limit: 1000msMemory Limit: 65536KBThis problem will be judged onPKU. Original ID:225164-bit integer IO format:%lld Java class name:...
分类:
其他好文 时间:
2015-01-20 17:20:26
阅读次数:
100
MySQL支持的数据类型 1、数值类型 整数类型:TINYINT (1)、SMALLINT (2)、MEDIUMINT (3)、INT/INTEGER (4)、BIGINT (8) 浮点数类型:FLOAT (4)、DOUBLE (8) 位类型:BIT(M) (1~8)对于整形数据,支持在类型名称后....
分类:
数据库 时间:
2015-01-20 15:36:21
阅读次数:
154
棋盘问题Time Limit: 1000msMemory Limit: 10000KBThis problem will be judged onPKU. Original ID:132164-bit integer IO format:%lld Java class name:Main在一个给定形...
分类:
其他好文 时间:
2015-01-20 15:26:22
阅读次数:
176
sqlite是一款开源的轻量级数据库,现在android和ios都在使用它来存储结构化数据,但是加密版的并非开源。折中一下只能找开源的解决方案,sqlcipher是一个不错的选择,它可以对sqlite实现加密,并且有在android和ios都有相应的库进行解密读取,只是引入的库会增加app的大小。SQLCipher is an open source library that provides transparent, secure 256-bit AES encryption of SQLite data...
分类:
数据库 时间:
2015-01-20 12:05:49
阅读次数:
224
Gray CodeThe gray code is a binary numeral system where two successive values differ in only one bit.Given a non-negative integernrepresenting the tot...
分类:
其他好文 时间:
2015-01-19 23:27:51
阅读次数:
244
刘汝佳:《训练指南》Page(194)#include #include #include #include using namespace std;//一维树状数组基础模板int lowbit(int x){ return x&(-x);}int c[1001];int sum(int x)...
分类:
编程语言 时间:
2015-01-19 14:09:29
阅读次数:
323
[cpp]view plaincopy#include#include#defineINT_BY_BIT32#defineMASK0x1F#defineSHIFT5#defineN1000000inta[N/INT_BY_BIT+1];voidset_bit(intx){a[x>>SHIFT]|=1...
分类:
编程语言 时间:
2015-01-18 21:08:14
阅读次数:
280
Step 1:到GTK官方网站上下载安装包。有32位的和64位,64位的有这句:Note that these 64-bit packages are experimental. Binary compatibility between versions is not guaranteed.还是选择...
一直以为大小端针对的bit的顺序,今天才知道:大小端的分度值是 byte,即每一个byte都是按照正常顺序,但是byte组装成一个int 或者是 long等时每个byte的摆放位置不同。测试代码:public class BufferTest { @Test public static ...
分类:
编程语言 时间:
2015-01-18 00:48:49
阅读次数:
368
Oracle Database 11g Release 2 (11.2.0.1.0) for Microsoft Windows (64-bit)http://download.oracle.com/otn/nt/oracle11g/112010/win64_11gR2_database_1of2....
分类:
数据库 时间:
2015-01-17 12:36:33
阅读次数:
430