滑动窗口(2) 绝对差不超过限制的最长连续子数组 给你一个整数数组 nums ,和一个表示限制的整数 limit,请你返回最长连续子数组的长度,该子数组中的任意两个元素之间的绝对差必须小于或者等于 limit 。 如果不存在满足条件的子数组,则返回 0 。 看到子数组,想到了滑动窗口。 滑动窗口的优 ...
分类:
其他好文 时间:
2021-02-22 12:36:53
阅读次数:
0
android项目部分编译: 1.source build/build.sh 2.source build/envsetup.sh 3.lunch 选择对应配置 4.进入单独编译目录执行mm mm -B WITH_DEXPREOPT=false #单独编译某模块时不做优化 adb shell命令 M ...
分类:
移动开发 时间:
2021-02-22 12:28:23
阅读次数:
0
数位DP模板题。 状态表示: \(f[len][cnt]\):表示当前为len位,且当前已统计的$1$的个数为cnt个。 注意点: 一开始把$f$数组表示成一维了,实际上搜索时每层的状态是个三维向量$(len,cnt,limit)$,limit可以不记录在数组中,但len和cnt是一定要记录在数组当 ...
分类:
其他好文 时间:
2021-02-22 12:19:35
阅读次数:
0
状态表示: dp[len][sta]表示当前第len位,上一位为last的情况下满足条件的数的个数。 int f[15][10]; int a[15]; int l,r; int dfs(int len,int last,bool limit) { if(!len) return 1; if(!li ...
分类:
其他好文 时间:
2021-02-22 12:12:38
阅读次数:
0
Mybatis分页 为什么分页? 减少数据的处理量 使用使用Limit分页 核心sql语句: <select id="getUserLimit" resultType="User" parameterType="map"> select *from mybatis.user limit ${star ...
分类:
其他好文 时间:
2021-02-22 12:10:50
阅读次数:
0
语法: UPDATE 表名称 SET 列名称 = 新值 WHERE 列名称 = 某值如何更新部分数据呢? where是用来限制更新的条件,limit限制更新条数 SELECT * FROM cs_country LIMIT 5,10; UPDATE cs_country SET population ...
分类:
数据库 时间:
2021-02-22 11:50:04
阅读次数:
0
A. Shifting Stacks time limit per test 1 second memory limit per test 256 megabytes input standard input output standard output You have n stacks of b ...
分类:
其他好文 时间:
2021-02-20 11:52:20
阅读次数:
0
the-backdoor-factory 安装 centos7安装步骤: 安装python3 yum -y install zlib-devel bzip2-devel openssl-devel ncurses-devel sqlite-devel readline-devel tk-devel ...
分类:
其他好文 时间:
2021-02-19 13:42:29
阅读次数:
0
一、MySQL概述 1、什么是数据库 ? 答:数据的仓库,如:在ATM的示例中我们创建了一个 db 目录,称其为数据库 2、什么是 MySQL、Oracle、SQLite、Access、MS SQL Server等 ? 答:他们均是一个软件,都有两个主要的功能: 将数据保存到文件或内存 接收特定的命 ...
分类:
数据库 时间:
2021-02-19 13:38:02
阅读次数:
0
valgrind是很好的检查内存泄漏的工具 使用命令: $ valgrind --tool=memcheck --log-file=/root/valgrind_log_all --leak-check=full --error-limit=no --show-reachable=yes --tra ...
分类:
其他好文 时间:
2021-02-19 13:36:36
阅读次数:
0