node.h

来自「在Linux下做的QuadTree的程序」· C头文件 代码 · 共 118 行

H
118
字号
/********************************************************************** * $Id: Node.h 1820 2006-09-06 16:54:23Z mloskot $ * * GEOS - Geometry Engine Open Source * http://geos.refractions.net * * Copyright (C) 2006 Refractions Research 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. * **********************************************************************/#ifndef GEOS_IDX_QUADTREE_NODE_H#define GEOS_IDX_QUADTREE_NODE_H#include <geos/index/quadtree/NodeBase.h> // for inheritance#include <geos/geom/Coordinate.h> // for composition#include <geos/geom/Envelope.h> // for inline#include <string>// Forward declarationsnamespace geos {	namespace geom {		//class Coordinate;		class Envelope;	}}namespace geos {namespace index { // geos::indexnamespace quadtree { // geos::index::quadtree/** * \brief * Represents a node of a Quadtree. * * Nodes contain items which have a spatial extent corresponding to * the node's position in the quadtree. * */class Node: public NodeBase {private:	geom::Envelope *env;	geom::Coordinate centre;	int level;	Node* getSubnode(int index);	Node* createSubnode(int index);protected:	bool isSearchMatch(const geom::Envelope *searchEnv) {		return env->intersects(searchEnv);	}public:	static Node* createNode(geom::Envelope *env);	static Node* createExpanded(Node *node,			const geom::Envelope *addEnv);	// Takes ownership of envelope	Node(geom::Envelope *nenv, int nlevel)		:		env(nenv),		centre((nenv->getMinX()+nenv->getMaxX())/2,			(nenv->getMinY()+nenv->getMaxY())/2),		level(nlevel)	{	}	virtual ~Node() { delete env; }	geom::Envelope* getEnvelope() { return env; }	/** \brief	 * Returns the subquad containing the envelope.	 * Creates the subquad if	 * it does not already exist.	 */	Node* getNode(const geom::Envelope *searchEnv);	/** \brief	 * Returns the smallest <i>existing</i>	 * node containing the envelope.	 */	NodeBase* find(const geom::Envelope *searchEnv);	void insertNode(Node *node);	std::string toString() const;};} // namespace geos::index::quadtree} // namespace geos::index} // namespace geos#endif // GEOS_IDX_QUADTREE_NODE_H/********************************************************************** * $Log$ * Revision 1.1  2006/03/22 12:22:50  strk * indexQuadtree.h split * **********************************************************************/

⌨️ 快捷键说明

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