rstree.desc

来自「基于内容的多媒体数据库检索算法: 用于最近邻搜索的R*-tree算法」· DESC 代码 · 共 65 行

DESC
65
字号
======================R*-tree  (version 1.0)======================A.  File Description====================rstree.desc		-- This README filertree.h			-- Head file for both rstree_build.c and rstree_search.crstree_build.c		-- R*-tree building partrstree_search.c		-- R*-tree searching part: support both kNN and range searchMakefile		-- Makefile to compile the build and search programsB. Compilation==============Type:   make  rstree_buildType:   make  rstree_searchNote:  Please compile it under Solaris platform.C. Execution============Try the following example:Type:    rstree_build  <config file>	You can also type "rstree_build" for more details about the usage.Type:    rstree_search <config file> <k: for kNN search> <#query>	You can also type "rstree_search" for more details about the usage.D.  Data File Format====================Each line of data file store a single vector for an object (point).Each line consists of the coordinate of the point in each dimension.E.  Config. File Format=======================Content of config. file:Line 1:  Minimum branching factor, m.Line 2:  Miximum branching factor, M.Line 3:  Dimension.Line 4:  Reinsert factor.Line 5:  Number of points.Line 6:  Path of data file.Line 7:  Path of query file storing a number of query points.F.  Execute Sample===================Type:   rstree_build  configSampleType:   rstree_search configSample 5  1G.  Reference=============Title:       The R*-tree: an efficient and robust access method for points and rectanglesAuthor:      Beckmann, N. and Kriegel, H.P. and Schneider, R. and Seeger, B.Conference:  ACM SIGMOD, 1990

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?