枚举是 C 语言中的一种基本数据类型,它可以让数据更简洁,更易读。 枚举语法定义格式为: enum 枚举名 {枚举元素1,枚举元素2,……}; 接下来我们举个例子,比如:一星期有 7 天,如果不用枚举,我们需要使用 #define 来为每个整数定义一个别名: #define MON 1 #defin ...
分类:
编程语言 时间:
2020-08-26 19:02:34
阅读次数:
83
#include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <string.h> #include <unistd.h> #include <fcntl.h> #define GPT_HEADER_SIGNATURE 0x5 ...
分类:
编程语言 时间:
2020-08-26 18:34:39
阅读次数:
57
ylbtech-nodejs.cn-Node.js-入门教程:具有 Async 和 Await 的现代异步 JavaScript 1.返回顶部 1、 具有 Async 和 Await 的现代异步 JavaScript 目录 介绍 为什么引入 async/await 工作原理 一个简单的示例 Prom ...
分类:
编程语言 时间:
2020-08-24 16:35:50
阅读次数:
49
点击查看代码块 #include <bits/stdc++.h> #define ed end() #define bg begin() #define mkp make_pair #define pb push_back #define vv(T) v(v(T)) #define v(T) vec ...
分类:
其他好文 时间:
2020-08-21 16:38:12
阅读次数:
84
//选择法对输入的10个字符按ASCII码大小进行排序 #include <stdio.h> #define N 10 int main(){ char a[N]; char t; int i,j; printf("请输入10个字符:\n"); for(i=0;i<N;i++){ scanf("%c ...
分类:
编程语言 时间:
2020-08-21 16:37:06
阅读次数:
95
##D. Boboniu Chats with Du 构造比较离谱。 我原本的思路是:要么选一个大于m的,占用d+1天;要么选d+1个小于等于m的。然后嗯贪。 贪个p,样例都过不了——因为没考虑一点,让一个大于m的去占据最后一个位置一定最优。 假设让他占之前的位置,那么原本可以放小于m的数的位置就减 ...
分类:
其他好文 时间:
2020-08-19 19:25:03
阅读次数:
62
这道题的数据是不是有点水?还是题目描述有问题? #include<bits/stdc++.h> #define x first #define y second using namespace std; const int N=1005; typedef pair<int,int> PII; int ...
分类:
其他好文 时间:
2020-08-17 17:32:42
阅读次数:
60
本弱鸡的第一道黑题! 发篇题解纪念一下! 这道题目我们可以用最小费用最大流来解决。 首先,你要会打费用流的模板。 不会的可以参考这里。 然后我们开始推式子... 设$U_i$表示第$i$个数$\ge U_i$ 设$D_i$表示第$i$个数$\ge D_i$ 我们先将源点$Start$向第一层流量为$ ...
分类:
其他好文 时间:
2020-08-17 17:20:47
阅读次数:
72
#include <stdio.h> #include <SDL.h> // 每次读取2帧数据, 以1024个采样点一帧 2通道 16bit采样点为例 #define PCM_BUFFER_SIZE (1024*2*2*2) // 音频PCM数据缓存 static Uint8 *s_audio_bu ...
分类:
其他好文 时间:
2020-08-15 22:37:43
阅读次数:
68
""" A TestRunner for use with the Python unit testing framework. It generates a HTML report to show the result at a glance. The simplest way to use th ...
分类:
Web程序 时间:
2020-08-13 12:21:33
阅读次数:
72