count 计数 s = ', abczjr ha,hah,\n ' print(s.count('a')) index() 指定字符串的索引 print(s.index('a')) print(s.index('a',0,10))#指定范围 find() 指定字符串的索引 print(s.find ...
分类:
其他好文 时间:
2020-08-27 13:01:53
阅读次数:
62
题目地址:632. 最小区间 You have k lists of sorted integers in ascending order. Find the smallest range that includes at least one number from each of the k li ...
分类:
其他好文 时间:
2020-08-26 17:10:59
阅读次数:
46
一:背景 1. 讲故事 前段时间有位朋友在微信群问,在向 mongodb 中插入的时间为啥取出来的时候少了 8 个小时,8 在时间处理上是一个非常敏感的数字,又吉利又是一个普适的话题,后来我想想初次使用 mongodb 的朋友一定还会遇到各种新坑,比如说: 插入的数据取不出来,看不爽的 Object ...
分类:
数据库 时间:
2020-08-24 16:38:14
阅读次数:
69
1.数据库1.创建数据库语法usedatabase_name示例>showdbs;admin0.000GBconfig0.000GBlocal0.000GB>useajingswitchedtodbajing>showdbs;admin0.000GBconfig0.000GBlocal0.000GB>db.mycollection.insert({"name":"ajing
分类:
数据库 时间:
2020-08-20 18:37:34
阅读次数:
69
1.什么是聚合聚合是MongoDB的高级查询语言,它允许我们通过转化合并由多个文档的数据来生成新的在单个文档里不存在的文档信息。MongoDB中聚合(aggregate)主要用于处理数据(诸如统计平均值,求和等),并返回计算后的数据结果,有点类似sql语句中的count(*)。在MongoDB中,有两种方式计算聚合:Pipeline和MapReduce。Pipeline查询速度快于MapReduc
分类:
数据库 时间:
2020-08-19 20:09:42
阅读次数:
128
6.mongoDB的java客户端1.springboot操作mongodb1.maven配置<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-mongodb</artifactId></depend
分类:
数据库 时间:
2020-08-19 20:07:22
阅读次数:
187
6.mongoDB的java客户端1.springboot操作mongodb1.maven配置<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-mongodb</artifactId></depend
分类:
数据库 时间:
2020-08-19 20:07:05
阅读次数:
176
6.mongoDB的java客户端1.springboot操作mongodb1.maven配置<dependency><groupId>org.springframework.boot</groupId><artifactId>spring-boot-starter-data-mongodb</artifactId></depend
分类:
数据库 时间:
2020-08-19 20:06:40
阅读次数:
107
找不到文件vmdk虚拟磁盘问题:在迁移虚拟机之后,启动找不到虚拟磁盘vmdk文件,虚拟机无法启动修复:1,首先开启vSphereclient的SSH端口配置--安全配置文件--服务-属性-SSH-选项-启动2,找到虚拟机损坏虚拟机所在位置find/-name"*172.16.2.12"cd/vmfs/volumes/5df3037a-d30a045c-62a0-0894ef4fa40c/linux
分类:
其他好文 时间:
2020-08-19 19:46:44
阅读次数:
336
题目链接 分析 假设有如下图两个集合 \(x\) & \(y\)。因为要构造一个完全图,所以应该将$x$中的$s[x]$个节点与$y$中的$s[y]$个节点一一连接即连接$s[x] * s[y] - 1$(此处减一是为了在后面单独处理原图中的$dis[i].w$)个节点,为了保证此完全图的最小生成树 ...
分类:
其他好文 时间:
2020-08-19 19:11:49
阅读次数:
55