方便 强大 易用! 文档:http://kimsama.github.io/Unity-QuickSheet/ 源码:https://github.com/kimsama/Unity-QuickSheet Unity-QuickSheet Unity-QuickSheet使您可以在Unity编辑器中 ...
分类:
编程语言 时间:
2020-01-09 13:19:03
阅读次数:
173
快速排序 ~~~~ void quick_sort(int q[], int l, int r) { if (l = r)return; int i = l 1, j = r + 1, x = q[l + r 1]; while (i x); if (i < j) swap(q[i], q[j]); ...
分类:
编程语言 时间:
2020-01-08 20:49:43
阅读次数:
90
1、创建集群 http://kafka.apache.org/documentation/#quickstart 有一句我觉得特别重要: For Kafka, a single broker is just a cluster of size one. 1.1、命令行操作 #解压文件 tar -zx ...
分类:
编程语言 时间:
2020-01-08 12:49:43
阅读次数:
100
非coding shortcuts Ctrl+\ to split the active editor into two. in the Quick Open (Ctrl+P) file list. 快速打开最近所用的文件。 side by side 肩并肩,同一排 安装Ctrl 选择多个文件,然后 ...
分类:
其他好文 时间:
2020-01-08 00:41:28
阅读次数:
92
运行结果 sort data: [8.6] [1.2] [5.1] [8.3] [6.5] [4.8] [5.3] [5.3] [7.3] [3.6] quick_sort: [1.2] [3.6] [4.8] [5.1] [5.3] [5.3] [6.5] [7.3] [8.3] [8.6] li ...
分类:
编程语言 时间:
2020-01-07 13:13:35
阅读次数:
78
将数组A[p...p]划分成两个子数组A[p...q-1]和A[q+1,r],使得A[p...q-1]的每一个元素都小于等于A[q],A[q]也小于等于A[q+1,r]中的每个元素。 实现快速排序 void quick_sort(int A[], int p, int r) { int q; if ...
分类:
编程语言 时间:
2020-01-07 11:44:39
阅读次数:
99
1 public class UfArray implements UF { 2 private int array[]=null; 3 public UfArray(int n) { 4 array=new int[n]; 5 for(int i=0;i<array.length;i++){ 6 ...
分类:
其他好文 时间:
2020-01-06 09:55:07
阅读次数:
80
算法设计题 2 six 顺序表中实现二分查找 判断二叉树是否为二叉排序树 链式结构上直接插入排序 seven 链式结构实现简单选择排序 顺序表上实现求子串的算法 eight 求链式结构上二叉树节点个数 设计将无向图的邻接矩阵变为邻接表的算法 nine 求二叉树上所有节点之和 设计将所有奇数移到偶数之 ...
分类:
其他好文 时间:
2020-01-04 18:16:05
阅读次数:
97
由于环境的需要,一个实例所有表要区分大小表,另一个实例不区分。部署过来也参数了很多资料,也遇到些坑,这里将我的部署记录下来,以便大家参考,操作过程如有不当之处,还请指点,谢谢!!具体部署过程记录如下:安装环境准备1.1主机环境准备1.1.1.HOST配置每台主机的hosts(/etc/hosts),添加host_ip$hostname到/etc/hosts文件中。[root@~]#echo&quo
分类:
数据库 时间:
2019-12-31 01:27:27
阅读次数:
78
目录 简介 基础变量 ScrollViewDelegate Direction _dragging _container _touchMoved _bounceable _touchLength 方法 create setContentSize deaccelerateScrolling maxCo ...
分类:
其他好文 时间:
2019-12-30 09:46:52
阅读次数:
94