码迷,mamicode.com
首页 >  
搜索关键字:define    ( 25272个结果
POJ3176
#include #include #define max(a, b) (((a) > (b)) ? (a) : (b))void GetMaxCost(int **data, int **result, int n){ int i, j; for(j = 1; j = 1; i--) { for....
分类:其他好文   时间:2014-05-16 03:17:40    阅读次数:195
外星人的供给站(贪心)
为了照到点Point(x0,y0),圆心可以在一个范围内移动,我们设该范围为(x,y)(Vec[i].x,Vec[i].y)表示第如果圆心在这个范围内,则第i个点就一定能照到,sum表示为了能照到前i个点,最靠近右边的圆的边界坐标。#define LOCAL#include#include#incl...
分类:其他好文   时间:2014-05-15 14:31:11    阅读次数:237
POJ2533
POJ2533#include #include #define max(a, b) (((a) > (b)) ? (a) : (b))void GetMaxIncLen(int *data, int *maxLen, int size){ int i, j; for(i = 2; i max) ....
分类:其他好文   时间:2014-05-15 13:52:57    阅读次数:259
NYOJ287
//#define LOCAL#include#include#include#includeint const MAX_N=1001;typedef struct Point{ double x,y; bool operatorVec[i].y) { ...
分类:其他好文   时间:2014-05-15 13:51:08    阅读次数:230
关于C语言中#define的副作用讨论
MFC虽然没有未来,但是我觉得MFC的思想还是有必要研究研究的,在MFC中或者一些底层代码的编写中,宏是相当好用的,为什么呢?因为宏只是简单的替换,不进行类型转换,替换就意味着灵活,而C语言编程的灵魂就是灵活埃但是在高级语言中,甚至C++中,是提倡用const的,不提倡用#de..
分类:编程语言   时间:2014-05-15 12:47:17    阅读次数:334
一天小结 php链接mysql 封装数据库
1:定义常量define(“HOST”,”127.0.0.1”);define(“USER”,”rooot”);//数据库用户define(“PWD”,”root”);//密码$conn=””;functionget_coon(){global$conn;$conn=mysql_connect(HO...
分类:数据库   时间:2014-05-15 11:10:24    阅读次数:348
linux下led灯驱动程序
1.驱动程序led.c#include #include #include #include #include #include #include #include #include #include #include #include #include #include #define LIGH....
分类:系统相关   时间:2014-05-15 10:16:13    阅读次数:571
CF:Problem 427C - Checkposts强连通 Tarjan算法
tarjan算法第一题    喷我一脸。。。。把手写栈的类型开成了BOOL,一直在找错。。。 #include #include #include #include #define maxn 100005 const int MOD=1000000007; using namespace std; struct node { int to,next; }edge[maxn...
分类:其他好文   时间:2014-05-15 08:18:56    阅读次数:353
typedef和define的区别
在使用C语言或者C++开发中,我们离不开typedef和define的使用,typedef相当于我们重新定义了一种类型,而define则只是简单的替换,这里我们简单归总一下二者的差别。 首先,我们可以用其他类型说明符对宏类型名进行扩展,但是对typedef的类型名不能扩展,比如 #define  demo   char 我们可以定义unsigned demo c;完全没问题,但是对于type...
分类:其他好文   时间:2014-05-15 01:24:18    阅读次数:249
PHP2014.5.14的总结:
1:生成随机数 2:定义常量(两种) (1):define():随便定义在哪里 (2):const():只能定义在最前面 3:想在函数里用全局变量必须用global申明一下 例:$conn = ""; //全局变量 function get_c...
分类:Web程序   时间:2014-05-14 23:37:33    阅读次数:615
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!