码迷,mamicode.com
首页 >  
搜索关键字:define    ( 25272个结果
GMOJ 6829. 【2020.10.25提高组模拟】异或
这是这场比赛第二水的一题,但我并没有切。 题解: 正解其实很简单,很容易可以发现一个性质,讲一个序列排序,xor值最小的值肯定出现在相邻两个数之间, 证明:设a<b<c,那么我们只需要证明min(ab,bc)<ac设到第t位开始第一次出现a,b,c在第t位上的值不同,有两种情况: 1.(0,0,1) ...
分类:其他好文   时间:2020-10-31 01:40:27    阅读次数:17
Segment Tree Beats!(吉司机线段树)
Segment Tree Beats $Q1.$给定长度为$n$的序列$A$,支持以下操作:1、区间取$\min$;2、区间查询最大值;3、区间求和。 const int N = 1000005; const int inf = 1<<30; int n, m, a[N]; #define lc ( ...
分类:其他好文   时间:2020-10-31 01:22:28    阅读次数:19
如何避免头文件被重复包含?
例如,为避免头文件my_head.h被重复包含,可在其中使用条件编译: #ifndef _MY_HEAD_H #define _MY_HEAD_H /空宏/ /其他语句/ #endif ...
分类:其他好文   时间:2020-10-30 13:19:14    阅读次数:37
sqlist --逆置 max
//顺序表基本运算算法 #include <stdio.h> #include <malloc.h> #define MaxSize 50 typedef int ElemType; typedef struct { ElemType data[MaxSize]; //存放顺序表元素 int len ...
分类:数据库   时间:2020-10-30 12:49:15    阅读次数:16
vue 格式化日期
cnpm install moment --save 摘自:https://www.cnblogs.com/zwq20134/p/11718034.html <el-table-column label="上映时间" prop="date" :formatter="dateFormat"> </el ...
分类:其他好文   时间:2020-10-29 10:19:09    阅读次数:26
你用过宏##粘贴函数,然后用函数指针查找执行吗?今天就给你说道说道
总述 宏的使用,大家经常会用,但是一般只是简单定义一个符号常量,类似于#define WHEEL_SCALE_MM 0.53f、 #define LOG_I(tag, text_fmt, ...) log_i(tag, text_fmt, ##VA_ARGS) ,但是除此之外还有宏还有个##粘贴作用 ...
分类:其他好文   时间:2020-10-27 11:49:58    阅读次数:26
PTA团体程序设计天梯赛题目集 L1-064 估值一亿的AI核心代码 (20分)
去年比赛的时候虽然对了,但写的好麻烦,以至于后面不敢再写这道题,今天又写了一遍,贴出来做纪念。 #include<stdio.h> #include<bits/stdc++.h> using namespace std; #define ll long long #define io_opt ios ...
分类:其他好文   时间:2020-10-27 11:46:36    阅读次数:32
实现一个函数来交换两个整数的内容(C语言代码练习)
//第一次尝试:#define _CRT_SECURE_NO_WARNINGS #include<stdio.h> #include<stdlib.h> void ChangeNum(int* x,int* y) { int temp = 0; temp = *x; *x = *y; *y = te ...
分类:编程语言   时间:2020-10-26 11:50:11    阅读次数:62
【题录】Atcoder Tenka1 Programmer Contest 2019
C. 前缀和。 #include <bits/stdc++.h> using namespace std; #define maxn 300000 #define INF 10000000 char c[maxn]; int n, ans = INF, sumB[maxn], sumW[maxn]; ...
分类:其他好文   时间:2020-10-26 11:41:45    阅读次数:22
xlslib开源库的使用
1、为了更好地使用xlslib开源库,本篇对其作了一个简单的封装,类为QMyExcel 头文件:qmyexcel.h #ifndef QMYEXCEL_H #define QMYEXCEL_H #include <stdio.h> #include <string.h> #include <wcha ...
分类:其他好文   时间:2020-10-26 10:38:40    阅读次数:22
25272条   上一页 1 ... 37 38 39 40 41 ... 2528 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!