📄 index.html
字号:
<A HREF="../rtree/AbstractNode.html#deleteData(int)">deleteData</A>,
<A HREF="../rtree/AbstractNode.html#getHyperCubes()">getHyperCubes</A>,
<A HREF="../rtree/AbstractNode.html#getLevel()">getLevel</A>,
<A HREF="../rtree/AbstractNode.html#getNodeMbb()">getNodeMbb</A>,
<A HREF="../rtree/AbstractNode.html#getParent()">getParent</A>,
<A HREF="../rtree/AbstractNode.html#getUniqueId()">getUniqueId</A>,
<A HREF="../rtree/AbstractNode.html#isIndex()">isIndex</A>,
<A HREF="../rtree/AbstractNode.html#isLeaf()">isLeaf</A>,
<A HREF="../rtree/AbstractNode.html#isRoot()">isRoot</A>,
<A HREF="../rtree/AbstractNode.html#pickSeeds()">pickSeeds</A>,
<A HREF="../rtree/AbstractNode.html#quadraticSplit(rtree.HyperCube, int)">quadraticSplit</A>,
<A HREF="../rtree/AbstractNode.html#toString()">toString</A></CODE></TD>
</TR>
</TABLE>
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#EEEEFF" CLASS="TableSubHeadingColor">
<TD><B>Methods inherited from class java.lang.Object</B></TD>
</TR>
<TR BGCOLOR="white" CLASS="TableRowColor">
<TD><CODE>clone,
equals,
finalize,
getClass,
hashCode,
notify,
notifyAll,
wait,
wait,
wait</CODE></TD>
</TR>
</TABLE>
<P>
<!-- ============ FIELD DETAIL =========== -->
<!-- ========= CONSTRUCTOR DETAIL ======== -->
<A NAME="constructor_detail"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Constructor Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="Index(rtree.RTree, int, int, int)"><!-- --></A><H3>
Index</H3>
<PRE>
protected <B>Index</B>(<A HREF="../rtree/RTree.html">RTree</A> tree, int parent, int pageNumber, int level)</PRE>
<DL>
</DL>
<!-- ============ METHOD DETAIL ========== -->
<A NAME="method_detail"><!-- --></A><TABLE BORDER="1" CELLPADDING="3" CELLSPACING="0" WIDTH="100%">
<TR BGCOLOR="#CCCCFF" CLASS="TableHeadingColor">
<TD COLSPAN=1><FONT SIZE="+2">
<B>Method Detail</B></FONT></TD>
</TR>
</TABLE>
<A NAME="chooseLeaf(rtree.HyperCube)"><!-- --></A><H3>
chooseLeaf</H3>
<PRE>
protected <A HREF="../rtree/Leaf.html">Leaf</A> <B>chooseLeaf</B>(<A HREF="../rtree/HyperCube.html">HyperCube</A> h)</PRE>
<DL>
<DD><B>Description copied from class: <A HREF="../rtree/AbstractNode.html">AbstractNode</A></B></DD>
<DD>chooseLeaf finds the most appropriate leaf where the given HyperCube should be stored.<DD><DL>
<DT><B>Overrides:</B><DD><A HREF="../rtree/AbstractNode.html#chooseLeaf(rtree.HyperCube)">chooseLeaf</A> in class <A HREF="../rtree/AbstractNode.html">AbstractNode</A></DL>
</DD>
<DD><B>Tags copied from class: <A HREF="../rtree/AbstractNode.html">AbstractNode</A></B></DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>h</CODE> - The new HyperCube.<DT><B>Returns:</B><DD>The leaf where the new HyperCube should be inserted.</DL>
</DD>
</DL>
<HR>
<A NAME="findLeaf(rtree.HyperCube)"><!-- --></A><H3>
findLeaf</H3>
<PRE>
protected <A HREF="../rtree/Leaf.html">Leaf</A> <B>findLeaf</B>(<A HREF="../rtree/HyperCube.html">HyperCube</A> h)</PRE>
<DL>
<DD><B>Description copied from class: <A HREF="../rtree/AbstractNode.html">AbstractNode</A></B></DD>
<DD>findLeaf returns the leaf that contains the given hypercube, null if the hypercube is not contained in any of the leaves of this node.<DD><DL>
<DT><B>Overrides:</B><DD><A HREF="../rtree/AbstractNode.html#findLeaf(rtree.HyperCube)">findLeaf</A> in class <A HREF="../rtree/AbstractNode.html">AbstractNode</A></DL>
</DD>
<DD><B>Tags copied from class: <A HREF="../rtree/AbstractNode.html">AbstractNode</A></B></DD>
<DD><DL>
<DT><B>Parameters:</B><DD><CODE>h</CODE> - The HyperCube to search for.<DT><B>Returns:</B><DD>The leaf where the HyperCube is contained, null if such a leaf is not found.</DL>
</DD>
</DL>
<HR>
<A NAME="insert(rtree.AbstractNode)"><!-- --></A><H3>
insert</H3>
<PRE>
protected boolean <B>insert</B>(<A HREF="../rtree/AbstractNode.html">AbstractNode</A> node)</PRE>
<DL>
<DD>Inserts a new node into the tree. If enought space is available the insertion is straighforward. If not, a split must occur.<DD><DL>
<DT><B>Parameters:</B><DD><CODE>node</CODE> - The node that should be inserted.<DT><B>Returns:</B><DD>True if a split occurred, false otherwise.</DL>
</DD>
</DL>
<HR>
<A NAME="adjustTree(rtree.AbstractNode, rtree.AbstractNode)"><!-- --></A><H3>
adjustTree</H3>
<PRE>
protected void <B>adjustTree</B>(<A HREF="../rtree/AbstractNode.html">AbstractNode</A> n1, <A HREF="../rtree/AbstractNode.html">AbstractNode</A> n2)</PRE>
<DL>
<DD>Called by insert to adjust the parents of the node that was modified by the insertion. Stops when it reaches the root.<DD><DL>
<DT><B>Parameters:</B><DD><CODE>n1</CODE> - The child node that caused the need for adjustment.<DD><CODE>n2</CODE> - If a split occured in the child node, this is the new node that must be inserted. Otherwise, this is null.</DL>
</DD>
</DL>
<HR>
<A NAME="getChild(int)"><!-- --></A><H3>
getChild</H3>
<PRE>
public <A HREF="../rtree/AbstractNode.html">AbstractNode</A> <B>getChild</B>(int i)</PRE>
<DL>
<DD>Retrieves the <B>i-th</B> child node. Loads one page into main memory.<DD><DL>
<DT><B>Parameters:</B><DD><CODE>i</CODE> - The index of the child in the data array.<DT><B>Returns:</B><DD>The i-th child.</DL>
</DD>
</DL>
<!-- ========= END OF CLASS DATA ========= -->
<HR>
<!-- ========== START OF NAVBAR ========== -->
<A NAME="navbar_bottom"><!-- --></A><TABLE BORDER="0" WIDTH="100%" CELLPADDING="1" CELLSPACING="0">
<TR>
<TD COLSPAN=2 BGCOLOR="#EEEEFF" CLASS="NavBarCell1">
<A NAME="navbar_bottom_firstrow"><!-- --></A><TABLE BORDER="0" CELLPADDING="0" CELLSPACING="3">
<TR ALIGN="center" VALIGN="top">
<TD BGCOLOR="#FFFFFF" CLASS="NavBarCell1Rev"> <FONT CLASS="NavBarFont1Rev"><B>Class</B></FONT> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="class-use/Index.html"><FONT ID="NavBarFont1"><B>Use</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../overview-tree.html"><FONT ID="NavBarFont1"><B>Tree</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../deprecated-list.html"><FONT ID="NavBarFont1"><B>Deprecated</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../index-all.html"><FONT ID="NavBarFont1"><B>Index</B></FONT></A> </TD>
<TD BGCOLOR="#EEEEFF" CLASS="NavBarCell1"> <A HREF="../help-doc.html"><FONT ID="NavBarFont1"><B>Help</B></FONT></A> </TD>
</TR>
</TABLE>
</TD>
<TD ALIGN="right" VALIGN="top" ROWSPAN=3><EM>
</EM>
</TD>
</TR>
<TR>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../rtree/HyperCube.html"><B>PREV CLASS</B></A>
<A HREF="../rtree/Leaf.html"><B>NEXT CLASS</B></A></FONT></TD>
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
<A HREF="../index.html" TARGET="_top"><B>FRAMES</B></A>
<A HREF="Index.html" TARGET="_top"><B>NO FRAMES</B></A></FONT></TD>
</TR>
<TR>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
SUMMARY: INNER | <A HREF="#fields_inherited_from_class_rtree.AbstractNode">FIELD</A> | <A HREF="#constructor_summary">CONSTR</A> | <A HREF="#method_summary">METHOD</A></FONT></TD>
<TD VALIGN="top" CLASS="NavBarCell3"><FONT SIZE="-2">
DETAIL: FIELD | <A HREF="#constructor_detail">CONSTR</A> | <A HREF="#method_detail">METHOD</A></FONT></TD>
</TR>
</TABLE>
<!-- =========== END OF NAVBAR =========== -->
<HR>
</BODY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -