【题目描述】 用两个栈实现一个队列。队列的声明如下,请实现它的两个函数 appendTail 和 deleteHead ,分别完成在队列尾部插入整数和在队列头部删除整数的功能。(若队列中没有元素,deleteHead 操作返回 -1 ) 示例 1: 输入:["CQueue","appendTail" ...
分类:
其他好文 时间:
2020-07-11 16:54:48
阅读次数:
51
// 调试文件 node debug *.js c-continue n-next s-step // watch 观察 unwatch 解除观察 // watch('i'); undefined // watch('i == 100'); false // setBreakpoint(finena ...
分类:
其他好文 时间:
2020-07-10 09:17:23
阅读次数:
62
#!/usr/bin/env python3 # -*- coding: utf-8 -*- # # # Date : xxxx-xx-xx # # Author : Created by zhouwanchun. # # Wechat : loveoracle11g # # Function: T ...
分类:
编程语言 时间:
2020-07-08 15:05:09
阅读次数:
77
react 嵌入 iframe 主要是为了隔离富文本,避免跟宿主环境的样式、变量等造成污染。 情况1:后端返回一个完整的网页,前端直接 `<iframe src="$url"></iframe>` 就可以了。 情况2:后端返回内容不可控 (比如以下例子)。 用法: index.tsx: export ...
分类:
其他好文 时间:
2020-07-06 16:07:23
阅读次数:
187
NX9+VS2012 #include <uf.h> #include <uf_curve.h> UF_initialize(); //三点创建圆弧 double first_point[3] = {-50.0, 0.0, 0.0}; double second_point[3] = {0.0, 5 ...
分类:
其他好文 时间:
2020-07-05 21:30:57
阅读次数:
79
CSDN同步 原题链接 简要题意: 给定 \(n\) 个数 \(\{a_i\}\) 和一个 \(m\),输出所有 $1 \leq i \leq n$ 的 \(\min_{\max(1, i-m+1)}^{i} a_i\). \(n,m \leq 2 \times 10^6\). 显然这就是 对每个数 ...
分类:
其他好文 时间:
2020-07-05 15:32:51
阅读次数:
64
Nginx 的常用的命令 进入 nginx 目录中 cd /usr/local/nginx/sbin 1、查看 nginx 版本号 ./nginx -v 2、启动 nginx ./nginx 3、停止 nginx ./nginx -s stop Nginx 的配置文件 1、nginx 配置文件位置 ...
分类:
其他好文 时间:
2020-07-05 00:20:44
阅读次数:
72
https://www.bangzhujiaocheng.com/126.html In order to access certain membership resources, you must accept the latest Apple Developer Program License ...
分类:
移动开发 时间:
2020-07-03 19:52:27
阅读次数:
683
今天帮一个同学修改剧本,说是跑不起来服务,中间报错,我就直接修改好放在这,以后供大家浏览看看,虽然写的一般,但是起码功能实现了,哈哈 做该实验起码先把mariadb-10.2.32.tar.gz包下载下来,大概441M。 编译安装mariadb-10.2.32 1.制作mysql的配置文件 [mys ...
分类:
数据库 时间:
2020-07-03 15:27:28
阅读次数:
78
1.通过IDEA加大jvm,tomcat内存 在VM options中添加:-Dfile.encoding=UTF-8 -mx2048m -XX:MaxPermSize=2048m -Drebel.spring_plugin=true -Drebel.hibernate_plugin=true 2. ...
分类:
其他好文 时间:
2020-07-03 12:22:52
阅读次数:
67