码迷,mamicode.com
首页 >  
搜索关键字:define    ( 25272个结果
ACM算法集锦
kurXX最小生成树#include #include #include using namespace std;#define M 501#define LIM 20000000struct edg{ int u,v; int w;}all_e[M*M/2];bool operator > t; ...
分类:其他好文   时间:2014-05-10 00:29:13    阅读次数:470
第一个Shellcode(Xp sp3)
研究挖0day有一阵了,先是汇编后来是逆向,最近才开始尝试第一个shellcode,我是用这个程序尝试溢出的:/* * fb.c * * Created on: 2014年5月3日 * Author: yuris */#include#include#define PASSWORD "1...
分类:其他好文   时间:2014-05-10 00:21:54    阅读次数:610
Wikilo 1191线段树区间修改单点查询
这题也算比较容易的了。 如果哪个区间已经没有黑色的话,就不用update了,就是因为这个原因WA了2发,唉…… #include #include #include #include #include #include #include #include #include #include #include #include #define PI acos(-1.0) ...
分类:其他好文   时间:2014-05-09 22:55:55    阅读次数:341
HDU 4280 Island Transport 网络流裸题
非递归版好像被卡掉了,其他2个板子都能过。 #include #include #include #include #include using namespace std; #define ll int const int MAXN = 100100;//点数的最大值 const int MAXM = 400010;//边数的最大值 const int INF = 0x3f3f3f3f; st...
分类:其他好文   时间:2014-05-09 22:55:23    阅读次数:476
C语言实现状态设计模式
#include #include #include #ifndef VIRTUAL #define VIRTUAL #endif #ifndef DELETE #define DELETE(X) do { free(X);X = NULL; } while(0) #endif #define NEW(TYPE,pInstance,SUBTYPE) struct TYPE* pInst...
分类:编程语言   时间:2014-05-09 22:29:48    阅读次数:455
#define的高级用法
=========================================================== define中的三个特殊符号:#,##,#@ =========================================================== #define Conn(x,y) x##y #define ToChar(x...
分类:其他好文   时间:2014-05-09 22:17:19    阅读次数:388
二维数组中的查找
题目描述:在一个二维数组中,每一行都按照从左到右递增的顺序排序,每一列都按照从上到下递增的顺序排序。请完成一个函数,输入这样的一个二维数组和一个整数,判断数组中是否含有该整数。输入:输入可能包含多个测试样例,对于每个测试案例,输入的第一行为两个整数m和n(1 2 #define MAX 100 3 ...
分类:其他好文   时间:2014-05-09 20:28:29    阅读次数:231
【HDOJ】2612 Find a way
BFS。 1 #include 2 #include 3 #include 4 #include 5 using namespace std; 6 7 #define INF 0x3fffffff 8 9 typedef struct node_st {10 int x, y, ...
分类:其他好文   时间:2014-05-09 20:18:48    阅读次数:339
c语言的宏的使用方法(转自他人)
C语言宏定义技巧周四, 2008年 10月 09日 14:10 高级管理员 C/C++编程 - C语言基础1,防止一个头文件被重复包含#ifndef COMDEF_H#define COMDEF_H //头文件内容#endif2,重新定义一些类型,防止由于各种平台和编译器的不同,而产生的类型字节数差...
分类:编程语言   时间:2014-05-09 19:53:26    阅读次数:476
编译系统对跨平台代码的支持
问题起因项目需要跑在不同的平台上不希望代码中掺杂大量的define宏做平台判断(有洁癖呀~~~)定义一些通用宏来处理只能解决一些类型差异的问题处理将跨平台代码写入不同的文件夹下 os/linux 和 os/win在外部暴露的.h文件加入判断宏//file: public.h #ifdef WIN32 #include "os/windows/public.h" #else #include "os...
分类:其他好文   时间:2014-05-09 14:46:23    阅读次数:246
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!