/etc/login.defs 是设置用户帐号限制的文件。该文件里的配置对root用户无效。优先级低于/etc/shadow里面的配置。 使用vim打开文件 [root@localhost ~]# vim /etc/login.defs # # Please note that the parame ...
分类:
其他好文 时间:
2020-07-26 22:56:50
阅读次数:
65
class Event { constructor(){ this.handlers = {}; // 记录所有的事件及处理函数 // { // click: [fn1, fn2], // mouseover: [fn3, fn4], // }; } /** * on 添加事件监听 * @param ...
分类:
其他好文 时间:
2020-07-26 19:05:55
阅读次数:
61
#include <stdio.h> #include <graphics.h> #include <stdlib.h> #include <dos.h> /*引用的库函数*/ #define LEFT 0x4b00 #define RIGHT 0x4d00 #define DOWN 0x5000 ...
分类:
编程语言 时间:
2020-07-26 02:05:25
阅读次数:
127
计算系数 运用二项式定理,递推组合数即可,也可以用Lucas定理 注意在快速幂中(取模运算有乘法时)要*1LL,防止中途溢出 #include<bits/stdc++.h> #define fi first #define se second #define pb push_back #define ...
分类:
其他好文 时间:
2020-07-26 01:35:17
阅读次数:
75
libname a '.\data'; data scatter; set a.scatter; run; proc template; define statgraph scatter; dynamic ht wt; mvar study; begingraph /border=false des ...
分类:
其他好文 时间:
2020-07-26 00:47:36
阅读次数:
78
[LuoguP4208][JSOI2008]最小生成树计数 题面 现在给出了一个简单无向加权图。你不满足于求出这个图的最小生成树,而希望知道这个图中有多少个不同的最小生成树。(如果两颗最小生成树中至少有一条边不同,则这两个最小生成树就是不同的)。由于不同的最小生成树可能很多,所以你只需要输出方案数对 ...
分类:
Web程序 时间:
2020-07-26 00:42:11
阅读次数:
88
MPI聚合通信 MPI_Barrier int MPI_Barrier( MPI_Comm comm ); 所有在该通道的函数都执行完后,才开始其他步骤。 0进程在状态T1调用MPI_Barrier函数,并在该位置挂起,等待其他进程到达。最后在T4状态同时进行。 例子: #include<stdio ...
分类:
其他好文 时间:
2020-07-25 23:41:02
阅读次数:
75
ES6中一共12个数据类型,分为两类,每类6个 基本数据类型 → 栈 (6个) string number boolean null undefined Symbol(es6) 引用数据类型 → 堆(6个) array object function data Set(es6) Map(es6) 1 ...
分类:
Web程序 时间:
2020-07-25 23:39:09
阅读次数:
90
1 /*先定义个三线表*/ proc template; define style work.threeline; parent=styles.rtf; class table/ frame=hsides rules=group borderspacing=0pt; end; run; option ...
分类:
其他好文 时间:
2020-07-25 11:27:42
阅读次数:
93
一、常量和C预处理器 1.符号常量(symbolic constant) 编译程序的时候程序中的符号常量都会被实际字面量所替换,这一过程称为编译时替换 格式:末尾不加分号,中间不加等号,字面量可以是数字,字符,字符串等 #define CHANGLIANGNAME 890 2.const限定符 C9 ...
分类:
其他好文 时间:
2020-07-25 09:28:02
阅读次数:
64