参考地址 https://docs.microsoft.com/zh cn/nuget/quickstart/install and use a package using the dotnet cli VsCode cmd命令输入 ...
分类:
Web程序 时间:
2020-03-23 16:41:04
阅读次数:
84
https://www.alibabacloud.com/forum/read-830 This article illustrates how to quickly deploy a safe Kubernetes cluster on Alibaba Cloud VPC, and install ...
分类:
Web程序 时间:
2020-03-23 15:08:52
阅读次数:
106
https://kafka.apache.org/quickstart C:\W_O_R_K\kafka_2.12-2.2.0\kafka_2.12-2.2.0\bin\windows\zookeeper-server-start.bat C:\W_O_R_K\kafka_2.12-2.2.0\ka ...
分类:
其他好文 时间:
2020-03-22 18:06:25
阅读次数:
77
安装MySQL ubuntu使用 "apt安装" :apt是Debian及其衍生发行版的软件包管理器。其他Linux安装方法见 "官网" 。 以下为当前环境未安装过MySQL,已安装过查看下面的第xx步和xx步。 1 Adding the MySQL APT Repository 2 通过APT安装 ...
分类:
数据库 时间:
2020-03-22 16:18:08
阅读次数:
100
Acwing785.快速排序 快排模板: y总教学大法好~: include using namespace std; const int N = 1000010; int q[N]; void quick_sort(int q[], int l, int r) { if (l = r) retur ...
分类:
编程语言 时间:
2020-03-21 14:50:29
阅读次数:
62
思想 快速排序,是选取一个元素,然后经过交换元素,保证选定元素的左边都小于它,右边元素都大于它。每次操作后,选定元素的位置就是排序后的位置。 就像多个人进行高矮个排列一样,你看了下,前面的人都比你矮,后面的人都比你高,那么你就可以不动了,随他们怎么折腾,反正你站的位置对了,他们排序好了,你也还是站在 ...
分类:
编程语言 时间:
2020-03-20 00:32:40
阅读次数:
73
The User Interface Webots GUI is composed of four principal windows: the 3D window that displays and allows you to interact with the 3D simulation, th ...
分类:
Web程序 时间:
2020-03-18 14:03:52
阅读次数:
197
返回主页 回到顶端 目录 This guide describes how to use Spring Session to transparently leverage Redis to back a web application’s HttpSession with Java Configur ...
分类:
编程语言 时间:
2020-03-16 21:58:57
阅读次数:
140
文档: react-router-dom官方文档:https://reacttraining.com/react-router/web/guides/quick-start connected-react-router文档(GitHub):https://github.com/supasate/co ...
分类:
其他好文 时间:
2020-03-15 22:17:17
阅读次数:
68
描述 归并排序和快速排序都是使用分而治之的思维.归并排序侧重点是最终结果的合并.快速排序的重点则是放在了子问题的分解上面. 代码一 def quick_sort(arr): len_arr = len(arr) if len_arr 参考 "分而治之" "算法设计与分析理论" "Python排序算法 ...
分类:
编程语言 时间:
2020-03-15 11:32:23
阅读次数:
63