题目链接 线段树,求区间最大值减去区间最小值的值。 #include<iostream> #include<cstdio> #include<cstring> #include<algorithm> #include<cmath> using namespace std; const int N = ...
分类:
其他好文 时间:
2020-07-30 01:40:15
阅读次数:
67
如果一个应用程序想要使用系统的方法,那么就需要给这个应用程序签名,相当于授权。 一.用于设置不同的签名方式build/target/product/security目录中有四组默认签名供Android.mk在编译APK使用:1.testkey:普通APK,默认情况下使用。2.platform:该AP ...
分类:
其他好文 时间:
2020-07-29 21:59:53
阅读次数:
101
工具:VMware® Workstation 15 Pro(15.5.6 build-16341506),kali-linux-2020.2-installer-amd64.iso vm15下载链接:https://www.vmware.com/content/vmware/vmware-publi ...
分类:
其他好文 时间:
2020-07-29 19:27:41
阅读次数:
88
全球负载均衡说到AWS、Google、Azure的全球负载均衡,那我们需要了解一下AnycastIP。我们知道,在互联网中的公网IP是唯一的,正常来说,一个网络中不应该有两个相同的IP,那么Anycastprotocol就是这么一项可以让一个IP分散在多个地方,这需要云厂商和各地的网络运营商做好路由等协议,将用户路由到最近的节点。那么全球负载均衡就是利用到了这一点,让用户以最近的路径跳到云厂商的骨
分类:
其他好文 时间:
2020-07-29 18:01:53
阅读次数:
108
在根目录新建 Static.bundle 文件夹 打开android/app/build.gradle文件,新增 android { ... sourceSets { main { assets.srcDirs = ['src/main/assets', '../../Static.bundle'] ...
分类:
移动开发 时间:
2020-07-29 17:37:44
阅读次数:
93
更新包索引 apt update 安装开发工具包 apt install build-essential 查看gcc是否安装成功 gcc --version 编写hello world vim hello.c #include <stdio.h> int main() { printf("Hello ...
分类:
系统相关 时间:
2020-07-29 15:07:04
阅读次数:
61
自动化配置脚本oracle12c.sh,如下: #!/bin/sh ##gcc-4.9 ##debian-8.11,buildin glibc version is 2.19 ###################################### cat <<eof>>/etc/profile ...
分类:
数据库 时间:
2020-07-29 15:00:40
阅读次数:
75
##8.1环境 ###含义: 与环境相关的特殊变量一--Global表、env表、registry表以及UpValue 。 Global表存放在lua_State 结构体中也称为G表。每个lua_State 结构体都有一个对应的G表。不用多说,这个表就是存放全局变量的。 env表存放在Closure ...
分类:
其他好文 时间:
2020-07-29 14:58:44
阅读次数:
59
一、查看默认端口号 1、登录mysql [root@localhost ~]# mysql -uroot -pEnter password: 输入数据库密码; 2、使用show global variables like 'port'; 命令查看端口号, mysql> show global var ...
分类:
数据库 时间:
2020-07-28 22:52:56
阅读次数:
110
题面 #include <bits/stdc++.h> using namespace std; template<typename temp> void read(temp &x){ x = 0; temp f = 1; char ch; while(!isdigit(ch = getchar() ...
分类:
其他好文 时间:
2020-07-28 22:35:46
阅读次数:
61