`
gis石头
  • 浏览: 1704 次
  • 性别: Icon_minigender_1
  • 来自: 南京
社区版块
存档分类
最新评论
文章列表
二叉排序树:或者是一颗空树,或者具有下列性质的二叉树:左子树全小于它的根节点,右子树节点的值全部大于根节点的值,它的左右子树也分别为二叉排序树。 java实现: package cn.stone.algorithm; public class BinarySortTree{ class BiTree{ int data; BiTree lchild; BiTree rchild; public BiTree(int data,BiTree lchild,BiTree rchild){ this.data=data; this.lch ...
geohash算法的核心就是将一个二维坐标(精度,纬度)转化为一个一维的字符串,然后利用从字符串在数据库进行检索,从而加快查询速度,比较在一般情况下无法使用在两列上同时应用索引。
Global site tag (gtag.js) - Google Analytics