最新 最热

ElasticSearch5.0之后的改变

ES5的变化search_type=count和scan都移除了count可以用size=0代替GET /my_index/_search{ "size": 0, "aggs": {

2019-09-10
1

mysql5.6 的st_distance 实现按照距离远近排序。

当前所处在的位置(113.858202 , 22.583819 ),需要查询我附近1000米内的小区,并安装由近到远的顺序排列

2019-09-02
0

ShaderGraph-火焰特效

Voronoi中的AngleOffset来模拟随机运动 UV采用事件控制Y方向上的变化,实现火焰不断向上

2019-06-16
0

人体姿态跟踪--Pose Flow: Efficient Online Pose Tracking

Pose Flow: Efficient Online Pose Tracking https://github.com/MVIG-SJTU/AlphaPose

2019-05-26
1

Hamming Distance

1. Description2. Solution32 timesclass Solution {public: int hammingDistance(int x, int y) {

2019-05-25
0

PhysX学习笔记(4): 动力学(3) Joint

Breakable Joint: 可以断开的, 由setBreakable控制. 断开时会响应onJointBreak()

2019-02-20
0

使用R完成K近邻分类

使用数据集iris, 验证Petal.Length, Petal.Width两个特征的分类能力。代码如下:

2019-02-13
0

BZOJ 3053: The Closest M Points(K-D Tree)

Time Limit: 10 Sec  Memory Limit: 128 MBSubmit: 1235  Solved: 418[Submit][Status][Discuss]DescriptionThe course of Software Design and Development Practice ...

2018-05-30
0

溶解效果

<圣域2>选人界面的角色出现时的效果非常酷, 一直不知道咋做的还是<龙歌>中speedtree在镜头前时的消隐也是这种溶解效果, 跟<圣域2>的圆形透明消隐差不多, 但是这种方法不用alphablend, 效率高些. (当时我形容是被虫子...

2018-05-23
1

Leetcode-Easy 72. Edit Distance

72. Edit Distance 描述: 求两个字符串的编辑距离 思路: 动态规划代码class Solution: def minDistance(self,

2018-04-11
0