⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 abstractnode.cpp

📁 在Linux下做的QuadTree的程序
💻 CPP
字号:
/********************************************************************** * $Id: AbstractNode.cpp 1971 2007-02-07 00:34:26Z strk $ * * GEOS - Geometry Engine Open Source * http://geos.refractions.net * * Copyright (C) 2006 Refractions Research Inc. * Copyright (C) 2001-2002 Vivid Solutions Inc. * * This is free software; you can redistribute and/or modify it under * the terms of the GNU Lesser General Public Licence as published * by the Free Software Foundation.  * See the COPYING file for more information. * **********************************************************************/#include <geos/index/strtree/AbstractNode.h>#include <vector>#include <cassert>using namespace std;namespace geos {namespace index { // geos.indexnamespace strtree { // geos.index.strtree/* * Constructs an AbstractNode at the given level in the tree * @param level 0 if this node is a leaf, 1 if a parent of a leaf, and so on; * the root node will have the highest level */AbstractNode::AbstractNode(int newLevel, int capacity) {	childBoundables=new std::vector<Boundable*>();	childBoundables->reserve(capacity);	bounds=NULL;	level=newLevel;}AbstractNode::~AbstractNode() {	delete childBoundables;}/*** Returns either child AbstractNodes, or if this is a leaf node, real data (wrapped* in ItemBoundables).*///vector<Boundable*>* AbstractNode::getChildBoundables() {	//return childBoundables;//}const void *AbstractNode::getBounds() const{	if (bounds==NULL) {		bounds = computeBounds();	}	return bounds;}/*** Returns 0 if this node is a leaf, 1 if a parent of a leaf, and so on; the* root node will have the highest level*/int AbstractNode::getLevel() {	return level;}/** * Adds either an AbstractNode, or if this is a leaf node, a data object * (wrapped in an ItemBoundable) */void AbstractNode::addChildBoundable(Boundable *childBoundable) {	assert(bounds==NULL);	childBoundables->push_back(childBoundable);}} // namespace geos.index.strtree} // namespace geos.index} // namespace geos/********************************************************************** * $Log$ * Revision 1.13  2006/03/21 10:47:34  strk * indexStrtree.h split * * Revision 1.12  2006/03/06 19:40:47  strk * geos::util namespace. New GeometryCollection::iterator interface, many cleanups. * **********************************************************************/

⌨️ 快捷键说明

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