
模版
dont_say_sorry
这个作者很懒,什么都没留下…
展开
-
(转) 果巨的模板
常用头文件和宏/* #pragma warning (disable: 4786) #pragma comment (linker, "/STACK:0x800000") */ #include <cassert> #include <cctype> #include <cmath> #include <cstdio> #include <cstdlib> #include <cstring>转载 2015-11-16 22:40:16 · 480 阅读 · 0 评论 -
[模版] 位运算 转自USACO
a |= 0x20; /* turn on bit 0x20 */ a &= ~0x20; /* turn off bit 0x20 */ a ^= 0x20; /* toggle bit 0x20 */ if (a & 0x20) { /* then the 0x20 bit is on */ } Binary Value Sample转载 2015-09-17 10:02:47 · 321 阅读 · 0 评论