码迷,mamicode.com
首页 >  
搜索关键字:define    ( 25272个结果
Deltix Round, Spring 2021 (open for everyone, rated, Div. 1 + Div. 2)
#include <bits/stdc++.h> #define please return #define ac 0 using namespace std; using ll = long long ; bool vis[1003]; void solve() { int n,m; cin>>n ...
分类:编程语言   时间:2021-06-02 18:28:48    阅读次数:0
从服务器上拷贝代码到虚拟机上编译不过
去掉application/tools/tcon_bin_generator/panel_bootbin_gen.c文件中 #if (__GNUC__ >= 4) && (__GNUC_MINOR__>= 6) // safe gcc version#else #error "GCC version ...
分类:其他好文   时间:2021-06-02 18:23:28    阅读次数:0
redis 》List存储结构
redis的List存储结构:一个链表加上压缩列表实现的 redis c语言源码双向循环列表# define QL_FILL_BITS 16# define QL_COMP_BITS 16# define QL_BM_BITS 4 /typedef struct quicklist { quickl ...
分类:其他好文   时间:2021-06-02 18:11:23    阅读次数:0
CF 580E Kefa and Watch
#include<bits/stdc++.h> #define ull unsigned long long using namespace std; const int N=1000011; const ull St=233,M1=1000000007,M2=1000000009; int n,m ...
分类:其他好文   时间:2021-06-02 16:00:05    阅读次数:0
aws - VPC
Amazon Virtual Private Cloud (Amazon VPC) is a service that lets you launch AWS resources in a logically isolated virtual network that you define. You ...
分类:其他好文   时间:2021-06-02 15:44:17    阅读次数:0
08-作用域
#作用域 #全局变量:在全局作用域下的变量,在函数内部没有关键字声明的变量也是全局变量 浏览器关闭才会销毁,占内存 #局部变量:在局部作用域下的变量,在函数内部的变量,形参 函数代码块执行结束后,销毁局部变量 #块级作用域 #作用域链 函数嵌套逐级向上查找 ...
分类:其他好文   时间:2021-06-02 15:12:27    阅读次数:0
javascript 数据类型1
一.typeof 检测数据类型 关键字:typeof.检测数据类型。 <script type="text/javascript" > console.log(typeof "今天是5/28"); console.log(typeof 12); console.log(typeof Infinity ...
分类:编程语言   时间:2021-06-02 14:26:05    阅读次数:0
Extjs fieldLabel Style
Ext.define('Ext.ux.form', { extend: 'Ext.form.Panel', listeners: { 'beforeadd': function(){ if (!field.allowBlank) { field.labelClsExtra = 'x-required ...
分类:Web程序   时间:2021-06-02 12:56:45    阅读次数:0
c语言 9-3
1、 #include <stdio.h> #define NUMBER 5 int main(void) { char str[NUMBER][128]; int i; for(i = 0; i < NUMBER; i++) { printf("str[%d] = ", i); scanf("%s ...
分类:编程语言   时间:2021-06-02 12:43:03    阅读次数:0
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
25272条   上一页 1 ... 7 8 9 10 11 ... 2528 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!