码迷,mamicode.com
首页 >  
搜索关键字:ifdef    ( 750个结果
【trie树】【P4551】 最长异或路径
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
关于#ifdef #ifndef
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
C语言gcc处理过程
gcc编译C文件一共四步,预处理(Preprocess),编译(Compilation),汇编(Assembly)和链接(Linking) 1. 预处理(Preprocess) 预处理是预处理中会展开以#起始的行,包括#if、#ifdef、#if ndef、 #else 、 #elif 、 # en ...
分类:编程语言   时间:2019-01-10 17:40:41    阅读次数:223
[bzoj2671] Calc
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
API的文件遍历,未使用CFileFind,因为里面牵扯MFC,编个DLL好麻烦。
// 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
一个Nuance 的语音识别的例子
#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 的使用
#ifdef __cplusplus extern "C" { #endif // C 样式的代码声明 #ifdef __cplusplus } #endif 这样的代码到底是什么意思呢? 首先,__cplusplus是cpp中的自定义宏,那么定义了这个宏的话表示这是一段cpp的代码,也就是说,上面 ...
分类:其他好文   时间:2018-12-19 13:09:59    阅读次数:124
C++中 #ifdef的妙用详解
本文主要介绍c语言中条件编译相关的预编译指令,包括 #define、#undef、#ifdef、#ifndef、#if、#elif、#else、#endif、defined。 #define 定义一个预处理宏#undef 取消宏的定义#if 编译预处理中的条件命令,相当于C语法中的if语句#ifde ...
分类:编程语言   时间:2018-12-06 12:10:34    阅读次数:261
750条   上一页 1 ... 9 10 11 12 13 ... 75 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!