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

📄 abstractstrtree.cpp

📁 一个很好的vc底层代码
💻 CPP
字号:
/********************************************************************** * $Id: AbstractSTRtree.cpp,v 1.22 2004/12/08 13:54:43 strk Exp $ * * GEOS - Geometry Engine Open Source * http://geos.refractions.net * * 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/indexStrtree.h>#include <geos/util.h>#include <geos/profiler.h>#include <stdio.h>#include <algorithm>#include <typeinfo>//#define PROFILE 1namespace geos {/** * Constructs an AbstractSTRtree with the specified maximum number of child * nodes that a node may have */AbstractSTRtree::AbstractSTRtree(int newNodeCapacity):	nodes(new vector<AbstractNode *>()),	nodeCapacity(newNodeCapacity),	built(false),	itemBoundables(new vector<Boundable*>()){	Assert::isTrue(newNodeCapacity>1, "Node capacity must be greater than 1");}AbstractSTRtree::~AbstractSTRtree() {	unsigned int ibsize = itemBoundables->size();	for (unsigned int i=0; i<ibsize; i++)		delete (*itemBoundables)[i];	delete itemBoundables;	unsigned int nsize = nodes->size();	for (unsigned int i=0; i<nsize; i++)		delete (*nodes)[i];	delete nodes;	//delete root;}/** * Creates parent nodes, grandparent nodes, and so forth up to the root * node, for the data that has been inserted into the tree. Can only be * called once, and thus can be called only after all of the data has been * inserted into the tree. */voidAbstractSTRtree::build(){#if PROFILE	static Profile *prof = Profiler::instance()->get("AbstractSTRtree::build");	prof->start();#endif	Assert::isTrue(!built);	root=(itemBoundables->empty()?createNode(0):createHigherLevels(itemBoundables,-1));	built=true;#if PROFILE	prof->stop();#endif}//void AbstractSTRtree::checkConsistency() {//	if (!built) {//		build();//	}//	vector<Boundable*>* itemBoundablesInTree=boundablesAtLevel(-1);//	Assert::isTrue(itemBoundables->size()==itemBoundablesInTree->size());//}/** * Sorts the childBoundables then divides them into groups of size M, where * M is the node capacity. */vector<Boundable*>*AbstractSTRtree::createParentBoundables(vector<Boundable*> *childBoundables, int newLevel){	Assert::isTrue(!childBoundables->empty());	vector<Boundable*> *parentBoundables=new vector<Boundable*>();	parentBoundables->push_back(createNode(newLevel));	vector<Boundable*> *sortedChildBoundables=sortBoundables(childBoundables);	unsigned int scbsize = sortedChildBoundables->size();	for(unsigned int i=0; i<scbsize; i++) {		Boundable *childBoundable=(AbstractNode*)(*sortedChildBoundables)[i];		if (lastNode(parentBoundables)->getChildBoundables()->size()==(unsigned int)nodeCapacity)		{			parentBoundables->push_back(createNode(newLevel));		}		lastNode(parentBoundables)->addChildBoundable(childBoundable);	}	delete sortedChildBoundables;	return parentBoundables;}AbstractNode* AbstractSTRtree::lastNode(vector<Boundable*> *nodes) {	return (AbstractNode*)(*nodes)[nodes->size()-1];}bool AbstractSTRtree::compareDoubles(double a, double b) {	//return a>b?1:(a<b?-1:0);	return a < b;}/*** Creates the levels higher than the given level* * @param boundablesOfALevel*            the level to build on* @param level*            the level of the Boundables, or -1 if the boundables are item*            boundables (that is, below level 0)* @return the root, which may be a ParentNode or a LeafNode*/AbstractNode*AbstractSTRtree::createHigherLevels(vector<Boundable*> *boundablesOfALevel, int level){	Assert::isTrue(!boundablesOfALevel->empty());	vector<Boundable*> *parentBoundables=createParentBoundables(boundablesOfALevel,level+1);	if (parentBoundables->size()==1) {		AbstractNode *ret = (AbstractNode*)(*parentBoundables)[0];		delete parentBoundables;		return ret;	}	AbstractNode *ret = createHigherLevels(parentBoundables,level+1);	delete parentBoundables;	return ret;}AbstractNode* AbstractSTRtree::getRoot() {	return root;}/*** Returns the maximum number of child nodes that a node may have*/int AbstractSTRtree::getNodeCapacity() {	return nodeCapacity;}voidAbstractSTRtree::insert(const void* bounds,void* item){	Assert::isTrue(!built,"Cannot insert items into an STR packed R-tree after it has been built.");	itemBoundables->push_back(new ItemBoundable(bounds,item));}/** *  Also builds the tree, if necessary. */vector<void*>*AbstractSTRtree::query(const void* searchBounds){	if (!built) {		build();	}#if PROFILE	static Profile *prof = Profiler::instance()->get("AbstractSTRtree::query(searchBounds)");	prof->start();#endif	vector<void*> *matches=new vector<void*>();	if (itemBoundables->empty()) {		Assert::isTrue(root->getBounds()==NULL);		return matches;	}	if (getIntersectsOp()->intersects(root->getBounds(),searchBounds))	{		query(searchBounds,root,matches);	}#if PROFILE	prof->stop();#endif	return matches;}voidAbstractSTRtree::query(const void* searchBounds,	AbstractNode* node, vector<void*> *matches){	vector<Boundable*> *vb=node->getChildBoundables();	unsigned int vbsize=vb->size();	for(unsigned int i=0;i<vbsize;i++)	{		Boundable *childBoundable=(*vb)[i];		if (!getIntersectsOp()->intersects(childBoundable->getBounds(),searchBounds))		{			continue;		}		if(AbstractNode *an=dynamic_cast<AbstractNode*>(childBoundable))		{			query(searchBounds, an, matches);		}		else if (ItemBoundable *ib=dynamic_cast<ItemBoundable *>(childBoundable))		{			matches->push_back(ib->getItem());		}		else		{			Assert::shouldNeverReachHere("AbstractSTRtree::query encountered an unsupported childBoundable type");		}	}}vector<Boundable*>*AbstractSTRtree::boundablesAtLevel(int level){	vector<Boundable*> *boundables=new vector<Boundable*>();	boundablesAtLevel(level,root,boundables);	return boundables;}/** * @param level -1 to get items */voidAbstractSTRtree::boundablesAtLevel(int level,AbstractNode* top,vector<Boundable*> *boundables){	Assert::isTrue(level>-2);	if (top->getLevel()==level) {		boundables->push_back(top);		return;	}	vector<Boundable*> *vb=top->getChildBoundables();	unsigned int vbsize = vb->size();	for(unsigned int i=0; i<vbsize; i++) {		Boundable *boundable=(*vb)[i];		if (typeid(*boundable)==typeid(AbstractNode)) {			boundablesAtLevel(level,(AbstractNode*) boundable,boundables);		} else {			Assert::isTrue(typeid(*boundable)==typeid(ItemBoundable));			if (level==-1) {				boundables->push_back(boundable);			}		}	}	return;}} // namespace geos/********************************************************************** * $Log: AbstractSTRtree.cpp,v $ * Revision 1.22  2004/12/08 13:54:43  strk * gcc warnings checked and fixed, general cleanups. * * Revision 1.21  2004/11/08 15:58:13  strk * More performance tuning. * * Revision 1.20  2004/11/04 19:08:07  strk * Cleanups, initializers list, profiling. * * Revision 1.19  2004/11/01 16:43:04  strk * Added Profiler code. * Temporarly patched a bug in DoubleBits (must check drawbacks). * Various cleanups and speedups. * * Revision 1.18  2004/07/27 16:35:46  strk * Geometry::getEnvelopeInternal() changed to return a const Envelope *. * This should reduce object copies as once computed the envelope of a * geometry remains the same. * * Revision 1.17  2004/07/13 08:33:52  strk * Added missing virtual destructor to virtual classes. * Fixed implicit unsigned int -> int casts * * Revision 1.16  2004/07/02 13:28:27  strk * Fixed all #include lines to reflect headers layout change. * Added client application build tips in README. * * Revision 1.15  2004/05/06 15:00:59  strk * Boundable destructor made virtual. * Added vector <AbstractNode *> *nodes member in AbstractSTRTree, * used to keep track of created node to cleanly delete them at * destruction time. * * Revision 1.14  2004/05/06 08:59:19  strk * memory leak fixed * * Revision 1.13  2004/05/05 17:42:06  strk * AbstractNode destructor made virtual. AbstractNode::bounds made protected. * SIRAbstractNode and STRAbstractNode destructors added to get rid of * AbstractNode::bounds in the right way (is a void * casted to appropriate * Class in the subClasses). * * Revision 1.12  2004/05/03 22:56:44  strk * leaks fixed, exception specification omitted. * * Revision 1.11  2004/05/03 16:29:21  strk * Added sortBoundables(const vector<Boundable *>) pure virtual in AbstractSTRtree, * implemented in SIRtree and STRtree. Comparator funx made static in STRtree.cpp * and SIRtree.cpp. * * Revision 1.10  2004/05/03 13:17:55  strk * Fixed comparator function to express StrictWeakOrdering. * * Revision 1.9  2004/04/28 14:58:47  strk * Made AbstractSTRtree::query use dynamic_cast<> to simulate java's * instanceof. Previous typeid(*) use missed to catch an STRAbstractNode * as a class derived from AbstractNode. Still have to check if this * is the correct semantic with Martin, but at least lots of SIGABORT * are no more raised. * * Revision 1.8  2004/04/26 12:37:19  strk * Some leaks fixed. * * Revision 1.7  2004/04/14 12:28:43  strk * shouldNeverReachHere exceptions made more verbose * * Revision 1.6  2004/03/25 02:23:55  ybychkov * All "index/" packages upgraded to JTS 1.4 * * Revision 1.5  2003/11/07 01:23:42  pramsey * Add standard CVS headers licence notices and copyrights to all cpp and h * files. * * **********************************************************************/

⌨️ 快捷键说明

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