findcenter.html

来自「平衡二叉树 生成」· HTML 代码 · 共 30 行

HTML
30
字号
<HTML>
<HEAD>
<TITLE>AVL Tree Applet</TITLE>
</HEAD>

<H1 ALIGN=CENTER>AVL Tree</H1>

<BODY>
	
<center>
	<applet code="BTApplet.class" align="baseline" width="600"
        height="300">
	<param name="nodes" value="12,16,27,11">
        </applet>

	
	<FONT size="2" face="Arial">
	<P>INSERT:Inserts a given node into the tree</P>
	<P>DELETE:Deletes a given node from the tree</P>
	<P>FIND:Searches for a specified node in the tree</P>
	<P>DELETE All:Delete the entire tree</P>
	<P>AVL option:checking the AVL option would balance the tree after every insertion and deletion</P>
	<P>TRAVERSE choice: Tree will be traversed in the selected traversal choice</P>
	</FONT>
</center>

</BODY>
</HTML>

⌨️ 快捷键说明

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