码迷,mamicode.com
首页 >  
搜索关键字:define    ( 25272个结果
bzoj2744: [HEOI2012]朋友圈
#include#include#include#includeusing namespace std;int nn;#define in(x) scanf("%d",&x)#define in2(x,y) scanf("%d%d",&x,&y)#define in3(x,y,z) scanf("%...
分类:其他好文   时间:2014-05-09 13:24:28    阅读次数:275
有关Cache –(1) linux list之中的Prefetc
转载:http://www.kernelchina.org/node/1050linux的list实现之中有如下东东:#define list_for_each(pos, head) \ for (pos = (head)->next; prefetch(pos->next), pos != (h....
分类:系统相关   时间:2014-05-09 10:04:38    阅读次数:323
hdu 1325 Is It A Tree?
http://acm.hdu.edu.cn/showproblem.php?pid=1325 1 #include 2 #include 3 #include 4 #define maxn 5000 5 using namespace std; 6 7 int in[maxn]...
分类:其他好文   时间:2014-05-09 08:42:25    阅读次数:316
hdu 1272 小希的迷宫
http://acm.hdu.edu.cn/showproblem.php?pid=1272 1 #include 2 #include 3 #include 4 #define maxn 50000 5 using namespace std; 6 7 int in[maxn...
分类:其他好文   时间:2014-05-09 08:36:38    阅读次数:393
简易游戏 2048 制作
// Matrix.h#ifndef MATRIX_H#define MATRIX_H#include#include#include#define rows 4#define cols 4#define L 6using std::ostream;classMatrix{friend ostrea...
分类:其他好文   时间:2014-05-09 07:21:22    阅读次数:353
CONTAINING_RECORD 宏
CONTAINING_RECORD 这样的一个宏,我看了它的定义,如下:#define CONTAINING_RECORD(address, type, field) ((type *)( (PCHAR)(address) - (ULONG_PTR)(&((type*)0)->field)))cla...
分类:其他好文   时间:2014-05-09 04:21:01    阅读次数:330
Poj.Grids 2951 浮点数求高精度幂
2951:浮点数求高精度幂总时间限制:1000ms内存限制:65536kB描述有一个实数 R ( 0.0 4 #include 5 #define SIZE 126 6 #define LEN 5 7 8 int a[SIZE],b[LEN]; 9 10 int mul( int alen,i...
分类:其他好文   时间:2014-05-09 03:28:02    阅读次数:379
linux 内核源码分析 - 获取数组的大小
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))   测试程序: #include #include struct dev { int a; char b; float c; }; struct dev devs[]= { { 1,'a',7.0, }, { 1,'a',7.0, }, { ...
分类:系统相关   时间:2014-05-09 02:10:16    阅读次数:494
《linux 内核完全剖析》 chapter 8 内核代码
chapter 8 内核代码 8.1.1中断处理程序 traps.c #define get_seg_byte(seg,addr) ({ \ //取seg中addr处1byte register char __res; __asm__("push %%fs;mov %%ax,%%fs;movb %%fs:%2,%%al;pop %%fs" ...
分类:系统相关   时间:2014-05-09 01:48:26    阅读次数:418
字符串解析
#include #include #define FALSE 0  //函数执行错误返回0 #define TRUE 1 //函数执行正确返回1 //串的堆分配存储表示 typedef struct { char *ch; int length; }String; //对串的所有操作都可以通过以下五个基本函数实现 void StrInit(String *);//串的初始化...
分类:其他好文   时间:2014-05-09 01:25:02    阅读次数:294
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!