码迷,mamicode.com
首页 >  
搜索关键字:define    ( 25272个结果
标准对象
typeof 123; // 'number' typeof NaN; // 'number' typeof 'str'; // 'string' typeof true; // 'boolean' typeof undefined; // 'undefined' typeof Math.abs; ...
分类:其他好文   时间:2021-06-25 17:03:55    阅读次数:0
数据结构之顺序表
构造一个空的顺序表 #define MAX_SIZE 100 typedef struct { int *address;//基地址 int length;//顺序表长度 int size;//顺序表总空间 }LIST; //创建一个空的顺序表 bool initList(LIST& list) { ...
分类:其他好文   时间:2021-06-25 16:40:30    阅读次数:0
数组实验
一、实验目的与要求 掌握一维和多维数组的定义和数组元素的使用方法。 了解一维和多维数组初始化的方法。 学习一维和多维数组的基本方法。 实验7-1 #include <time.h> #include <stdlib.h> void pao(int s[], int n) { int i, j; in ...
分类:编程语言   时间:2021-06-23 17:10:00    阅读次数:0
后缀表达式
#include<stdio.h> #include<stdlib.h> #define OK 1 #define Error 0 typedef int Status; //栈 typedef struct StackNode { int data; struct StackNode *next; ...
分类:其他好文   时间:2021-06-21 20:35:07    阅读次数:0
顺序表
#include<stdlib.h> #include<stdio.h> #include<string.h> #define MAX 10005 typedef struct node { char a[16]; int len; }node; node te,t[MAX]; int n=0; v ...
分类:其他好文   时间:2021-06-21 20:33:31    阅读次数:0
题解 P4427 [BJOI2018]求和
Solution lca+前缀和 快读不要忘写c= 复杂度 \(O(nk)\) Code #include<iostream> #include<cstdio> #include<cstdlib> #define ll long long using namespace std; const int ...
分类:其他好文   时间:2021-06-21 19:59:39    阅读次数:0
第二章:ObpLookupObjectName 函数
ObjectHeader = OBJECT_TO_OBJECT_HEADER( RootDirectory ); #define OBJECT_TO_OBJECT_HEADER( o ) CONTAINING_RECORD( (o), OBJECT_HEADER, Body ) #define CO ...
分类:其他好文   时间:2021-06-20 18:50:48    阅读次数:0
Effective C++ 条款2:尽量以const,enum,inline替换#define
#define用来定义常量。 首先我们需要知道,#define会在预编译的时候,以字符串替换的形式被替换掉。假设我们#define AspectRatio= 1.635。如果AspectRatio在使用的过程中报错,编译器会直接提示1.635。如果这个宏是其他文件定义的,那么对于使用者而言,他甚至都 ...
分类:编程语言   时间:2021-06-20 18:21:18    阅读次数:0
#ifdef,#else,#endif,#if的作用和意义+C语言的编译预处理
预处理C程序的编译预处理用于把每一条C语句用若干条机器指令来实现,生成目标程序。由于#define等编译预处理指令不是C语句,不能被编译程序翻译,需要在真正编译之前作一个预处理,解释完成编译预处理指令,从而把预处理指令转换成相应的C程序段,最终成为由纯粹C语句构成的程序,经编译最后得到目标代码。C语 ...
分类:编程语言   时间:2021-06-20 18:03:08    阅读次数:0
机器学习sklearn(二十二): 模型评估(二)交叉验证:评估估算器的表现(二)计算交叉验证的指标
计算交叉验证的指标 使用交叉验证最简单的方法是在估计器和数据集上调用 cross_val_score 辅助函数。 下面的示例展示了如何通过分割数据,拟合模型和计算连续 5 次的分数(每次不同分割)来估计 linear kernel 支持向量机在 iris 数据集上的精度: >>> from skle ...
分类:其他好文   时间:2021-06-20 17:46:16    阅读次数:0
25272条   上一页 1 2 3 4 5 ... 2528 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!