gistobs.cpp
来自「此文件包含了在linux下实现tpr-tree索引的源代码」· C++ 代码 · 共 28 行
CPP
28 行
//--------------------------------------------------------------------// GiSTobs.cpp// -----------//// GiST - Generalized Search Tree // June 2001 release, Aalborg University// // This file is a revised version of a part of the original // libGiST release (version 0.9beta1) // Copyright (c) 1996, Regents of the University of California#include "GiST.h"//------------------------------------------------// Giving the ability for the derived classes to access the arbitrary// part of the tree being observedGiSTnode *GiSTobserver::ReadNode (const GiSTpath& path) const{ return tree->ReadNode(path);}//------------------------------------------------GiSTnode *GiSTobserver::CreateNode () const{ return tree->CreateNode();}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?