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

📄 nodebase.cpp

📁 在Linux下做的QuadTree的程序
💻 CPP
字号:
/********************************************************************** * $Id: NodeBase.cpp 1820 2006-09-06 16:54:23Z mloskot $ * * 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/bintree/NodeBase.h>#include <geos/index/bintree/Interval.h>#include <geos/index/bintree/Node.h>#include <geos/index/chain/MonotoneChain.h> // FIXME: split#include <vector>using namespace std;using namespace geos::index::chain;namespace geos {namespace index { // geos.indexnamespace bintree { // geos.index.bintree/** * Returns the index of the subnode that wholely contains the given interval. * If none does, returns -1. */intNodeBase::getSubnodeIndex(Interval *interval, double centre){	int subnodeIndex=-1;	if (interval->min>=centre) subnodeIndex=1;	if (interval->max<=centre) subnodeIndex=0;	return subnodeIndex;}NodeBase::NodeBase(){	items=new vector<void*>();	subnode[0]=NULL;	subnode[1]=NULL;}NodeBase::~NodeBase() {	for(int i=0;i<(int)items->size();i++) {		delete (MonotoneChain*)(*items)[i];	}	delete items;	delete subnode[0];	delete subnode[1];	subnode[0]=NULL;	subnode[1]=NULL;}vector<void*>*NodeBase::getItems(){	return items;}void NodeBase::add(void* item){	items->push_back(item);}vector<void*>* NodeBase::addAllItems(vector<void*> *newItems) {	items->insert(items->end(),newItems->begin(),newItems->end());	for(int i=0;i<2;i++) {		if (subnode[i]!=NULL) {			subnode[i]->addAllItems(newItems);		}	}	return items;}vector<void*>*NodeBase::addAllItemsFromOverlapping(Interval *interval,vector<void*> *resultItems){	if (!isSearchMatch(interval))		return items;	resultItems->insert(resultItems->end(),items->begin(),items->end());	for (int i=0;i<2;i++) {		if (subnode[i]!=NULL) {			subnode[i]->addAllItemsFromOverlapping(interval,resultItems);		}	}	return items;}intNodeBase::depth(){	int maxSubDepth=0;	for (int i=0;i<2;i++) {		if (subnode[i]!=NULL) {			int sqd=subnode[i]->depth();			if (sqd>maxSubDepth)				maxSubDepth=sqd;		}	}	return maxSubDepth+1;}intNodeBase::size(){	int subSize=0;	for (int i=0;i<2;i++) {		if (subnode[i]!=NULL) {			subSize+=subnode[i]->size();		}	}	return subSize+(int)items->size();}intNodeBase::nodeSize(){	int subSize=0;	for (int i=0;i<2;i++) {		if (subnode[i]!=NULL) {			subSize+=subnode[i]->nodeSize();		}	}	return subSize+1;}} // namespace geos.index.bintree} // namespace geos.index} // namespace geos/********************************************************************** * $Log$ * Revision 1.12  2006/03/22 18:12:31  strk * indexChain.h header split. * * Revision 1.11  2006/03/22 16:01:33  strk * indexBintree.h header split, classes renamed to match JTS * **********************************************************************/

⌨️ 快捷键说明

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