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

📄 monotonechain.cpp

📁 在Linux下做的QuadTree的程序
💻 CPP
字号:
/********************************************************************** * $Id: MonotoneChain.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. * ********************************************************************** * * Last port: index/chain/MonotoneChain.java rev. 1.13 (JTS-1.7) * **********************************************************************/#include <geos/index/chain/MonotoneChain.h>#include <geos/index/chain/MonotoneChainSelectAction.h>#include <geos/index/chain/MonotoneChainOverlapAction.h>#include <geos/geom/CoordinateSequence.h>#include <geos/geom/LineSegment.h>#include <geos/geom/Envelope.h>using namespace geos::geom;namespace geos {namespace index { // geos.indexnamespace chain { // geos.index.chainEnvelope*MonotoneChain::getEnvelope(){	if (env==NULL) {		const Coordinate& p0=pts->getAt(start);		const Coordinate& p1=pts->getAt(end);		env=new Envelope(p0,p1);	}	return env;}voidMonotoneChain::getLineSegment(unsigned int index, LineSegment *ls){	ls->p0=pts->getAt(index);	ls->p1=pts->getAt(index+1);}/** * Return the subsequence of coordinates forming this chain. * Allocates a new array to hold the Coordinates */CoordinateSequence*MonotoneChain::getCoordinates() {	return pts->clone();}voidMonotoneChain::select(const Envelope& searchEnv, MonotoneChainSelectAction& mcs){	computeSelect(searchEnv,start,end,mcs);}voidMonotoneChain::computeSelect(const Envelope& searchEnv,		unsigned int start0, unsigned int end0,		MonotoneChainSelectAction& mcs ){	const Coordinate& p0=pts->getAt(start0);	const Coordinate& p1=pts->getAt(end0);	mcs.tempEnv1->init(p0,p1);	//Debug.println("trying:"+p0+p1+" [ "+start0+","+end0+" ]");	// terminating condition for the recursion	if(end0-start0==1) {		//Debug.println("computeSelect:"+p0+p1);		mcs.select(*this,start0);		return;	}	// nothing to do if the envelopes don't overlap	if (!searchEnv.intersects(mcs.tempEnv1))		return;	// the chains overlap,so split each in half and iterate (binary search)	unsigned int mid=(start0+end0)/2;	// Assert: mid != start or end (since we checked above for end-start <= 1)	// check terminating conditions before recursing	if (start0<mid) {		computeSelect(searchEnv,start0,mid,mcs);	}	if (mid<end0) {		computeSelect(searchEnv,mid,end0,mcs);	}}voidMonotoneChain::computeOverlaps(MonotoneChain *mc, MonotoneChainOverlapAction *mco){	computeOverlaps(start,end,mc,mc->start,mc->end,mco);}voidMonotoneChain::computeOverlaps(int start0, int end0, MonotoneChain *mc,		int start1, int end1, MonotoneChainOverlapAction *mco){	//Debug.println("computeIntersectsForChain:"+p00+p01+p10+p11);	// terminating condition for the recursion	if (end0-start0==1 && end1-start1==1) {		mco->overlap(this,start0,mc,start1);		return;	}	const Coordinate& p00=pts->getAt(start0);	const Coordinate& p01=pts->getAt(end0);	const Coordinate& p10=mc->pts->getAt(start1);	const Coordinate& p11=mc->pts->getAt(end1);	// nothing to do if the envelopes of these chains don't overlap	mco->tempEnv1->init(p00,p01);	mco->tempEnv2->init(p10,p11);	if (!mco->tempEnv1->intersects(mco->tempEnv2)) return;	// the chains overlap,so split each in half and iterate (binary search)	int mid0=(start0+end0)/2;	int mid1=(start1+end1)/2;	// Assert: mid != start or end (since we checked above for	// end-start <= 1)	// check terminating conditions before recursing	if (start0<mid0) {		if (start1<mid1)			computeOverlaps(start0,mid0,mc,start1,mid1,mco);		if (mid1<end1)			computeOverlaps(start0,mid0,mc,mid1,end1,mco);	}	if (mid0<end0) {		if (start1<mid1)			computeOverlaps(mid0,end0,mc,start1,mid1,mco);		if (mid1<end1)			computeOverlaps(mid0,end0,mc,mid1,end1,mco);	}}} // namespace geos.index.chain} // namespace geos.index} // namespace geos/********************************************************************** * $Log$ * Revision 1.1  2006/03/22 18:12:32  strk * indexChain.h header split. * **********************************************************************/

⌨️ 快捷键说明

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