码迷,mamicode.com
首页 >  
搜索关键字:typedef    ( 8832个结果
AVL树, 平衡二叉搜索树, 平衡二叉树
#include <stdio.h> #include <stdlib.h> #include <time.h> #define max(a, b) ((a) > (b) ? (a) : (b)) typedef struct Node { int key, height; struct Node ...
分类:其他好文   时间:2021-06-02 12:24:05    阅读次数:0
Codeforces Round #722 (Div. 2)
题目:https://codeforc.es/contest/1529 A. Eshag Loves Big Arrays 题意:略 题解:发现随便取两个不同的数,一定可以删掉大的那个数。所以最后留下的肯定是最小的所有数。 #include<iostream> #include<algorithm> ...
分类:其他好文   时间:2021-05-25 18:14:45    阅读次数:0
最小费用最大流
#include<bits/stdc++.h> using namespace std; typedef long long ll; namespace MCMF { const int MAXN = 10000, MAXM = 10000, INF = 0x7fffffff; int head[M ...
分类:其他好文   时间:2021-05-25 17:42:56    阅读次数:0
联合体结合位域使用技巧
偶然在代码中看到这样一个定义: typedef union { unsigned char byte; /**< the whole byte */ struct { unsigned int retain : 1; /**< retained flag bit */ unsigned int qo ...
分类:其他好文   时间:2021-05-24 16:41:35    阅读次数:0
数据结构(严蔚敏)2.4一元多项式
学习记录,仅供参考,希望可以指出错误 根据带头结点的线性链表改编,即elemtype也变成了struct结构 #include<stdio.h> #include<stdlib.h> //改由带头结点的线性链表 #define OK 1 #define ERROR 0 typedef int sta ...
分类:其他好文   时间:2021-05-24 12:40:12    阅读次数:0
hiredis api部分详解
发送命令 void* redisCommand(redisContext c,const char format,...); 参数 返回值 返回值是一个void类型的指针,实际为指向一个redisReply类型的指针 typedef struct redisReply{ // 命令执行结果的返回类型 ...
分类:Windows程序   时间:2021-05-24 10:14:41    阅读次数:0
CF1245D Shichikuji and Power Grid
思路: 图论。参考了https://codeforces.com/blog/entry/71080。 实现: 1 #include<bits/stdc++.h> 2 using namespace std; 3 typedef long long ll; 4 const ll INF = 0x3f3 ...
分类:其他好文   时间:2021-05-24 08:39:17    阅读次数:0
补题记录:E. Correct Placement
补题记录:E. Correct Placement 学到了新的搜索技巧 E. Correct Placement 题意:给你一个矩形纸片,有h, w两个参数,当且仅当$h_i < h_j && w_i < w_j$或者$h_i < w_j && w_i < h_j$,两者满足其一,则称纸片i可以放到 ...
分类:其他好文   时间:2021-05-24 07:41:56    阅读次数:0
C++常用库
#include <chrono> /// nanoseconds typedef duration<_GLIBCXX_CHRONO_INT64_T, nano> nanoseconds; /// microseconds typedef duration<_GLIBCXX_CHRONO_INT64 ...
分类:编程语言   时间:2021-05-24 06:07:05    阅读次数:0
时钟节拍tick
tick typedef enum { HAL_TICK_FREQ_10HZ = 100U, HAL_TICK_FREQ_100HZ = 10U, HAL_TICK_FREQ_1KHZ = 1U, HAL_TICK_FREQ_DEFAULT = HAL_TICK_FREQ_1KHZ } HAL_Ti ...
分类:其他好文   时间:2021-05-24 05:18:05    阅读次数:0
8832条   上一页 1 ... 3 4 5 6 7 ... 884 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!