Description 给定 $n$ 个点的带边权树,求一条异或和最大的简单路径 Input 第一行是点数 $n$ 下面 $n 1$ 行每行三个整数描述这棵树 Output 输出一个数代表答案 Hint $1~\leq~n~\leq~10^5~,~1~\leq~w~ include ifdef ON ...
分类:
其他好文 时间:
2019-01-14 22:02:52
阅读次数:
180
https://www.cnblogs.com/agnily/p/5848768.html 1、先看#ifdef的用法: 如果定义过 KEY1_PA0,就执行第一段代码,否则就执行第二段代码!! 2、#ifndef的用法: 在文件bsp_usart1.h中: 如果没有define过__USART1_ ...
分类:
其他好文 时间:
2019-01-12 17:48:36
阅读次数:
174
gcc编译C文件一共四步,预处理(Preprocess),编译(Compilation),汇编(Assembly)和链接(Linking) 1. 预处理(Preprocess) 预处理是预处理中会展开以#起始的行,包括#if、#ifdef、#if ndef、 #else 、 #elif 、 # en ...
分类:
编程语言 时间:
2019-01-10 17:40:41
阅读次数:
223
Description 给出N,统计满足下面条件的数对(a,b)的个数: 1. 1 using namespace std; define int long long define ONLINE_JUDGE ifdef ONLINE_JUDGE define getchar() ((p1==p2&& ...
分类:
其他好文 时间:
2019-01-02 17:32:14
阅读次数:
223
// FindFileDebug.cpp : 定义控制台应用程序的入口点。//#include "stdafx.h"#include "FindFileDebug.h"#ifdef _DEBUG#define new DEBUG_NEW#endif#define IS_DIRECTORY(x) (( ...
分类:
编程语言 时间:
2019-01-01 21:45:51
阅读次数:
220
视图类,废话少说,看看带注释的源码 #include "stdafx.h" #include "robot.h" #include"Label.h" #include "robotDoc.h" #include "robotView.h" #ifdef _DEBUG #define new DEBU ...
分类:
其他好文 时间:
2018-12-23 18:02:39
阅读次数:
216
#include "stdafx.h" #include "YuyinTree.h" #include "YuyinTreeDlg.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __ ...
分类:
其他好文 时间:
2018-12-19 18:39:39
阅读次数:
181
#include "stdafx.h" #include "GetToken.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif //////////// ...
分类:
其他好文 时间:
2018-12-19 18:37:07
阅读次数:
161
#ifdef __cplusplus extern "C" { #endif // C 样式的代码声明 #ifdef __cplusplus } #endif 这样的代码到底是什么意思呢? 首先,__cplusplus是cpp中的自定义宏,那么定义了这个宏的话表示这是一段cpp的代码,也就是说,上面 ...
分类:
其他好文 时间:
2018-12-19 13:09:59
阅读次数:
124
本文主要介绍c语言中条件编译相关的预编译指令,包括 #define、#undef、#ifdef、#ifndef、#if、#elif、#else、#endif、defined。 #define 定义一个预处理宏#undef 取消宏的定义#if 编译预处理中的条件命令,相当于C语法中的if语句#ifde ...
分类:
编程语言 时间:
2018-12-06 12:10:34
阅读次数:
261