A mathematical theory of communication Audio学习: https://www.youtube.com/watch?v=SgcU9nl9oAM&list=PLWDB4efc1BVY_OzzdeYStpxd2hVe35mVC 背景 目前21世纪所处的时代是信息时 ...
分类:
其他好文 时间:
2021-06-02 16:41:20
阅读次数:
0
单列集合的工具类 // Lists // 创建集合 List<String> list1 = Lists.newArrayList(); List<String> list2 = Lists.newArrayListWithCapacity(8); List<String> list3 = List ...
分类:
其他好文 时间:
2021-06-02 16:29:39
阅读次数:
0
ArrayList list = new ArrayList(); // 第一次扩容 for (int i = 0; i < 10; i++) { list.add(i); } ArrayList list1 = list; for (int i = 0; i < 5; i++) { list1.a ...
分类:
其他好文 时间:
2021-06-02 16:00:48
阅读次数:
0
ShardingSphere你还不会吗?(第一篇) 作者:星晴(当地小有名气,小到只有自己知道的杰伦粉) 一.需求 我们做项目的时候,数据量比较大,单表千万级别的,需要分库分表,于是在网上搜索这方面的开源框架,最常见的就是mycat,sharding-sphere,最终我选择后者,用它来做分库分表比 ...
分类:
其他好文 时间:
2021-06-02 15:46:34
阅读次数:
0
Docker Tutorial Basic Docker Commands pull an image docker pull {image name}:{image version} list all docker images docker image ls -a create and run ...
分类:
其他好文 时间:
2021-06-02 15:27:12
阅读次数:
0
package leetcode; import java.util.ArrayList; import java.util.List; public class demo_22 { public List<String> generateParenthesis(int n) { List<Stri ...
分类:
其他好文 时间:
2021-06-02 14:38:15
阅读次数:
0
using System; using System.Collections.Generic; using System.Text; using System.Data; using System.Reflection; using System.Collections; using System. ...
一、概述 zookeeper 类似文件系统,client 可以创建节点、更新节点、删除节点,那么如何做到节点的权限的控制呢?zookeeper的access control list 访问控制列表可以做到这一点。 # 语法 # 采用特定的授权策略给特定的对象授予特定的权限 setAcl path a ...
分类:
其他好文 时间:
2021-06-02 14:07:32
阅读次数:
0
错误: Repository epel is listed more than once in the configurationbintray-rabbitmq-rpm 5.6 B/s | 10 B 00:01 Errors during downloading metadata for repo ...
分类:
其他好文 时间:
2021-06-02 14:01:53
阅读次数:
0
时间复杂度:O(N2) 空间复杂度:O(1) 稳定性:稳定 // 冒泡排序 void bubble_sort(int list[], int listSize) { int i, j, flag; int temp; for (i = listSize - 1; i >= 1; --i) { fla ...
分类:
编程语言 时间:
2021-06-02 13:42:30
阅读次数:
0