摘要:
在ubuntu上面多节点安装kubernetes,假设有两台机器master:192.168.1.84minion:192.168.1.83You wil now need to configure your kube-master and kube-minion.First,prepare the... 阅读全文
摘要:
直接插入排序(Insertion Sort)的基本思想是:每次将一个待排序的记录,按其关键字大小插入到前面已经排好序的子序列中的适当位置,直到全部记录插入完成为止。这个算法比较简单,不需要过多的解释,代码如下: 1 /* 2 * insert the value which is at the i... 阅读全文