/** *获取对应日期的288个时刻点 two hundred and eighty-eight *@date 2017-11-24 下午4:06:14 *@author Administrator (chenrd) */ public static List<String> getTwoHundr ...
分类:
其他好文 时间:
2021-01-04 10:47:27
阅读次数:
0
type annotation 类型注解 let count: number; count = 1; type inference 类型推断 const one = 1; const two = 2; const three = one + two; const person = { name: " ...
分类:
其他好文 时间:
2020-12-29 11:26:26
阅读次数:
0
四大高阶函数: map、reduce、filter、sorted 1.map函数: 根据提供的函数对指定序列做映射 使用可迭代对象(指定的序列)中的每个元素调用函数,将返回值作为新可迭代对象元素;返回值为新的可迭代对象。 map函数的参数第一个为自定义的函数,这里没有括号 第二个参数不仅仅是列表类型 ...
分类:
其他好文 时间:
2020-12-23 11:40:13
阅读次数:
0
一、自动跳转轮播图 1、HTML结构 1 <div id="wrap"> 2 <div id="main"> 3 <div class="page">One</div> 4 <div class="page">Two</div> 5 <div class="page">Three</div> 6 < ...
分类:
Web程序 时间:
2020-12-22 12:28:55
阅读次数:
0
一、redis redis是一个key-value存储系统。和Memcached类似,它支持存储的value类型相对更多,包括string(字符串)、list(链表)、set(集合)、zset(sorted set --有序集合)和hash(哈希类型)。这些数据类型都支持push/pop、add/r ...
分类:
其他好文 时间:
2020-12-17 12:34:39
阅读次数:
2
Mysql 8.0 OCP认证考试原题题库整理(CUUG内部资料)-第4题 4、Choose two. User `fwuser`@`localhost` is registered with the MySQL Enterprise Firewall and has been granted pr ...
分类:
数据库 时间:
2020-12-15 12:12:12
阅读次数:
3
Remote Dictionary Server(Redis)是一个开源的使用ANSI C语言编写、支持网络、可基于内存亦可持久化的日志型、Key-Value 数据库,并提供多种语言的API。它通常被称为数据结构服务器,因为值(value)可以是 字符串(String), 哈希(Map), 列表(l ...
分类:
其他好文 时间:
2020-12-10 11:28:01
阅读次数:
8
Given an array of integers, find out whether there are two distinct indices i and j in the array such that the absolute difference between nums[i] and ...
分类:
编程语言 时间:
2020-12-10 11:13:48
阅读次数:
6
Given n non-negative integers a1, a2, ..., an , where each represents a point at coordinate (i, ai). n vertical lines are drawn such that the two endp ...
分类:
其他好文 时间:
2020-12-04 11:23:41
阅读次数:
6
题意 给定m个长度不定的区间,取两个长度为k的区间,m个区间中每个区间的贡献为与两个长度为k的区间的交的较大值。求最大贡献。 思路 可以看到对于两个区间来说,当区间中心越靠近时区间交越大。所以我们把m个区间按区间中心排序,然后对于两个长度为k的区间一个取前一部分进行相交,一个取后一部分取交。预处理出 ...
分类:
其他好文 时间:
2020-12-04 11:17:49
阅读次数:
7