这是在redis 3.2版本推出的,推算地理位置的信息,两地之间的距离,周围方圆的人等等场景都可以用它实现。 一、geoadd 将指定的地理空间位置(纬度、经度、名称)添加到指定的key中。 这里可以借助网上的一些查询经纬度的工具来获取数据。 geoadd china:city 121.472644 ...
分类:
其他好文 时间:
2021-06-19 19:14:32
阅读次数:
0
string类型 构造函数 public string(char[] value) public string(char[] value,int offset,int count) 拼接字符串: + or += 比较字符串 public static int Compare(string strA, ...
ArrayList的核心成员属性 public class ArrayList<E> extends AbstractList<E> implements List<E>, RandomAccess, Cloneable, java.io.Serializable { private static ...
分类:
其他好文 时间:
2021-06-18 19:30:43
阅读次数:
0
题目 题目链接:https://atcoder.jp/contests/arc122/tasks/arc122_d 给定一个长度为 \(2n\) 的序列,Alice 和 Bob 执行以下操作 \(n\) 次: Alice 选择一个之前未被选择过的数字 \(x\)。 Bob 选择一个之前未被选择过的数 ...
分类:
其他好文 时间:
2021-06-13 10:57:23
阅读次数:
0
补题链接:Here 1538A. Stone Game 数组 \(a\) 的大小为 \(n\) ,请问每次可以删除最左和最右侧的元素,请问最少执行多少次能删除掉数组中的最大值和最小值 (\(1\le a_i\le n\)) 在输入的时候确定最大值和最小值的下标, 4种情况 比较从左边删除和右边删除的 ...
分类:
其他好文 时间:
2021-06-13 10:20:33
阅读次数:
0
'''CSS style link rel="stylesheet" href="css" style 基本选择器 #id .class TogName * 组合选择器 x y/x > y/x + y/x ~y 属性选择器 x[a/a=b/a^=b/a$=b/a*=b/a~=b] 伪类选择器 :li ...
分类:
Web程序 时间:
2021-06-13 09:59:56
阅读次数:
0
假设两个操作者分别为$A$和$B$,其中$A$希望最大、$B$希望最小 (并不默认$A$为整局游戏的先手,仅是最终的结果考虑$A$为先手时) 记第$i$个队列第$j$个元素为$a_{i,j}$(其中$1\le i\le k,1\le j\le n_{i}$) 特判$n_{i}=1$的队列,直接把队列 ...
分类:
其他好文 时间:
2021-06-13 09:24:24
阅读次数:
0
前言 本节开始整理日志相关的东西。先整理一下日志的基本原理。 正文 首先介绍一下包: Microsoft.Extengsion.Logging.Abstrations 这个是接口包。 Microsoft.Extengsion.Logging 这个是实现包 Microsoft.Extengsion.L ...
分类:
Web程序 时间:
2021-06-08 23:42:17
阅读次数:
0
可以打开网页,不能登录,不能评论。 正常的: 其他: 删除这段: 就会这样 ...
分类:
Web程序 时间:
2021-06-08 23:37:10
阅读次数:
0
创建表 create table agg_source( \ id UInt8, \ name String, \ city String, \ money UInt32 \ ) engine=MergeTree() \ partition by city \ order by id; 插入数据 i ...
分类:
其他好文 时间:
2021-06-05 18:20:32
阅读次数:
0