码迷,mamicode.com
首页 >  
搜索关键字:bit    ( 10514个结果
POJ 2251 Dungeon Master
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支持的数据类型
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
POJ 1321 棋盘问题
棋盘问题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
sqlite3加密方案sqlcipher,及sqlcipher使用指南
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
【leetcode】Gray Code
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
树状数组(二叉索引树 BIT Fenwick树) *【一维基础模板】(查询区间和+修改更新)
刘汝佳:《训练指南》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
Windows下安装GTK+
Step 1:到GTK官方网站上下载安装包。有32位的和64位,64位的有这句:Note that these 64-bit packages are experimental. Binary compatibility between versions is not guaranteed.还是选择...
分类:Windows程序   时间:2015-01-18 14:20:48    阅读次数:178
java的大小端和转换
一直以为大小端针对的bit的顺序,今天才知道:大小端的分度值是 byte,即每一个byte都是按照正常顺序,但是byte组装成一个int 或者是 long等时每个byte的摆放位置不同。测试代码:public class BufferTest { @Test public static ...
分类:编程语言   时间:2015-01-18 00:48:49    阅读次数:368
Oracle10G 11G官方下载地址集合
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
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!