#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #error_log "pipe:rollba ...
分类:
其他好文 时间:
2020-12-28 11:28:07
阅读次数:
0
二叉树的锯齿形层序遍历 题目: 给定一个二叉树,返回其节点值的锯齿形层序遍历。(即先从左往右,再从右往左进行下一层遍历,以此类推,层与层之间交替进行)。 例如: 给定二叉树 [3,9,20,null,null,15,7], 3 / 9 20 / 15 7 返回锯齿形层序遍历如下: [ [3], [2 ...
分类:
其他好文 时间:
2020-12-28 11:27:02
阅读次数:
0
IfcTextTransformation描述如何处理字符的大小写。值包括: ①capitalize:大写每个单词的第一个字符 ②uppercase:大写元素的所有字母 ③lowercase:将元素的所有字母都小写 ④none 从CSS-1中定义的文本转换中采用的注释类型。 IFC2x3中增加的新类 ...
分类:
其他好文 时间:
2020-12-28 11:19:59
阅读次数:
0
Switch多选择结构 ***用途:***用于判断一个变量于一系列值中某个变量是否相等 switch中的变量类型: byte,,short,int 或者 char 从Java SE 7 开始 switch 支持字符串 String 类型 case标签必须是字符串常量或字面量 匹配八大基本类型 pac ...
分类:
其他好文 时间:
2020-12-28 11:09:39
阅读次数:
0
问题:当手机上安装好Autojs app,连接电脑端vscode 时报错:failed to connect to 192.168.2.8:9317 总是连接失败。 解决方法:手机打开热点共享,让电脑连接手机共享的wifi热点。然后在电脑上cmd窗口输入:ipconfig 查看当前电脑的ip。vsc ...
分类:
Web程序 时间:
2020-12-28 11:01:12
阅读次数:
0
1、 sudo apt-get install nfs-kernel-server # 安装 NFS服务器端 sudo apt-get install nfs-common # 安装 NFS客户端 2、添加NFS目录 sudo vim /etc/exports 若需要把 “/nfsroot” 目录设 ...
分类:
系统相关 时间:
2020-12-25 12:51:18
阅读次数:
0
lnmp部署 nginx编译安装 nginx编译安装 mariadb安装 ##安装mariadb [root@vm3 ~]# yum -y install mariadb mariadb-server ##修改mariadb密码 [root@vm3 ~]# mysql MariaDB [(none) ...
分类:
其他好文 时间:
2020-12-25 12:22:47
阅读次数:
0
1 初始化数组 常用的几种初始化数组的方式,最后一种是指定位置初始化元素。第二个位置是 o 元素。 auto int array[ARRAY_SIZE]; int array_2[ARRAY_SIZE] = {0,1,2,3,4,5,6,7,8,9}; double array_double[5] ...
分类:
编程语言 时间:
2020-12-25 12:17:53
阅读次数:
0
SQL Server 2008语句大全完整版 设置内存选项 --设置 min server memory 配置项 EXEC sp_configure N'min server memory (MB)',0 --设置 max server memory 配置项 EXEC sp_configure N' ...
分类:
数据库 时间:
2020-12-25 11:57:49
阅读次数:
0
Given an array of integers, return the number of (contiguous, non empty) subarrays that have a sum divisible by . Example 1: Note: 1. `1 这道题给了一个数组,让返回 ...
分类:
编程语言 时间:
2020-12-25 11:49:15
阅读次数:
0