One Person Game There is a very simple and interesting one-person game. You have 3 dice, namely Die1, Die2 and Die3. Die1 has K1 faces. Die2 has K2 fa ...
分类:
其他好文 时间:
2018-03-17 12:15:14
阅读次数:
169
0. 背景 评估(或者说验证)聚类结果就如同聚类本身一样困难。通常的方法有 内部评估 和 外部评估 这两种: 内部评估的方法:通过一个单一的量化得分来评估算法好坏;该类型的方法 外部评估的方法:通过将聚类结果与已经有“ground truth”分类进行对比。要么通过人类进行手动评估,要么通过一些指标 ...
分类:
其他好文 时间:
2018-03-16 18:39:41
阅读次数:
191
Question: Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number. Th ...
分类:
其他好文 时间:
2018-03-07 11:41:36
阅读次数:
166
1.点云分割的精度 在之前的两个章节里介绍了基于采样一致的点云分割和基于临近搜索的点云分割算法。基于采样一致的点云分割算法显然是意识流的,它只能割出大概的点云(可能是杯子的一部分,但杯把儿肯定没分割出来)。基于欧式算法的点云分割面对有牵连的点云就无力了(比如风筝和人,在不用三维形态学去掉中间的线之前 ...
分类:
编程语言 时间:
2018-02-26 17:45:11
阅读次数:
1588
Python 基本数据类型 容器 列表 字典 集合 元组 函数 类 Numpy 数组 访问数组 数据类型 数组计算 广播 SciPy 图像操作 MATLAB文件 点之间的距离 Matplotlib 绘制图形 绘制多个图形 图像 基本数据类型 容器 列表 字典 集合 元组 函数 类 列表 字典 集合 ...
分类:
编程语言 时间:
2018-02-22 23:52:09
阅读次数:
392
Given an array of integers that is already sorted in ascending order, find two numbers such that they add up to a specific target number. The function ...
分类:
其他好文 时间:
2018-02-20 19:21:12
阅读次数:
183
In a given array nums of positive integers, find three non-overlapping subarrays with maximum sum. Each subarray will be of size k, and we want to max ...
分类:
移动开发 时间:
2018-02-18 23:58:52
阅读次数:
507
Given an integer array nums, find the sum of the elements between indices i and j (i ≤ j), inclusive. Example: Note: ...
分类:
其他好文 时间:
2018-02-11 10:48:40
阅读次数:
174
Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have ex ...
分类:
编程语言 时间:
2018-02-11 01:15:05
阅读次数:
225
本节我们将尝试利用三角形制作一个“走马灯”效果。 一个三角形如图示方式,从左向右依次移动。 先看一下代码: MyGlWindow.cpp MyGlWindow.h 重点看cpp文件里的变化。 先定义了几个变量(其实也可以定义成常量),方便后面使用,他们分别是: float triangleWidth ...