上一页 1 ··· 4 5 6 7 8 9 10 11 下一页

2017年12月15日

通过geohash找出距离某个经纬度点最近的道路(二维空间查询转换为一维比较查询)

摘要: 场景 通过出租车、货车等发出实时轨迹点,这些轨迹点往往出现偏移,需要找出汽车具体在哪条道路上行驶 传统做法 通过对点进行buffer,然后关联空间数据库(oracle、postgis等)找出与buffer相交的link,逐步比较点与关联link的距离,找出距离最近的link 缺点: 1、空间数据库二 阅读全文

posted @ 2017-12-15 14:42 李雷 阅读(943) 评论(0) 推荐(0)

2017年12月14日

postgresql常用操作

摘要: 数据库启动、关闭、重启 使用pg_ctl,启动、关闭、重启分别对应start、stop、restart 例如:pg_ctl -D /data/lilei/postgresql/data 其中-D意为数据文件目录 修改远程访问 在postgresql数据文件目录,有两个配置文件:pg_hba.conf 阅读全文

posted @ 2017-12-14 15:23 李雷 阅读(266) 评论(0) 推荐(0)

2017年12月13日

postgresql全文检索部署实施

摘要: 概述 zhparser 是一个支持中文全文检索的 extension,基于Simple Chinese Word Segmentation(SCWS) 上开发的 SCWS安装 下载文件:http://www.xunsearch.com/scws/down/scws-1.2.2.tar.bz2 解压安 阅读全文

posted @ 2017-12-13 10:20 李雷 阅读(951) 评论(1) 推荐(0)

2017年11月16日

从一整数数组中找出只重复一次的两个数

摘要: 概述 有一整数数组,所有数都重复了两次,只有两个数重复了一次,找出这两个数,要求空间复杂度为O(1),时间复杂度O(n) 代码 阅读全文

posted @ 2017-11-16 10:16 李雷 阅读(244) 评论(0) 推荐(0)

Edit Distance 最小编辑距离

摘要: 概述 Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted as 1 step.) You ha 阅读全文

posted @ 2017-11-16 09:35 李雷 阅读(180) 评论(0) 推荐(0)

2017年11月15日

求和数组项值,使其等于某个目标值

摘要: 描述 Given a set of candidate numbers (C) and a target number (T), find all unique combinations in C where the candidate numbers sums to T. The same rep 阅读全文

posted @ 2017-11-15 17:15 李雷 阅读(753) 评论(0) 推荐(0)

求数组三项之和最接近某个目标数字

摘要: 描述 Given an array S of n integers, find three integers in S such that the sum is closest toa given number, target. Return the sum of the three integer 阅读全文

posted @ 2017-11-15 13:57 李雷 阅读(357) 评论(0) 推荐(0)

一步一步本地化部署mapbox-gl

摘要: 概述 本文旨在从无到erverything的部署一套在线可视化的矢量地图,当然是依赖于mapbox-gl,物理流程图如下: 条件 js方面: 1、mapbox-gl-dev.js,参考http://www.cnblogs.com/lilei2blog/p/7827110.html 2、字体符号,参考 阅读全文

posted @ 2017-11-15 12:04 李雷 阅读(7947) 评论(0) 推荐(1)

快速排序

摘要: 概述 快速的升序排列(注意边界) 代码 阅读全文

posted @ 2017-11-15 09:40 李雷 阅读(173) 评论(0) 推荐(0)

2017年11月14日

合并排序

摘要: 概述 合并的升序排列 代码 阅读全文

posted @ 2017-11-14 15:51 李雷 阅读(141) 评论(0) 推荐(0)

上一页 1 ··· 4 5 6 7 8 9 10 11 下一页

导航