二叉樹繪製器BinaryTreeDrawer實現

2021-08-22 01:26:05 字數 1762 閱讀 2035

我們可能需要將乙個二叉樹以圖形化的方式顯示出來,我實現了乙個二叉樹繪製器binarytreedrawer,用於繪製前文實現的二叉樹。

先看看這個繪製器的外貌:

public inte***ce ibinarytreedrawer

//節點半徑

}//繪製器引數

public class drawerparas

介面沒什麼說的,實現如下:

public class binarytreedrawer :ibinarytreedrawer

#region ibinarydrawer 成員

public void initialize(drawerparas paras)

public void resetgraphic(graphics g)

}public size getcanvassize(int binarytreedepth ,int radius)

public void zoom(double coeff)

}public void drawbinarytree(isorttedbinarytree tree ,int offsetleft ,int offsethigh)

this.curtree = tree ;

this.offsetx = offsetleft ;

this.offsety = offsethigh ;

trycatch(exception ee)

}public int radius

return this.drawparas.radius ;}}

#endregion

#region private

#region getnodeposition

private point getnodeposition(int depth)

#endregion

#region drawtree

private void drawtree(node root ,int rowindex ,int colindex ,graphics g ,point position ,int offsetleft ,int offsethigh)

int radius = this.drawparas.radius ;

int x = position[rowindex][colindex].x*radius - offsetleft + radius ;

int y = position[rowindex][colindex].y*radius - offsethigh + radius ;

g.fillellipse(this.drawparas.brushnode ,x ,y ,radius*2 ,radius*2) ;

g.drawellipse(this.drawparas.pennode ,x ,y ,radius*2 ,radius*2) ;

g.drawstring(root.val.tostring() ,this.drawparas.fonttext ,this.drawparas.brushtext ,x+ radius/4 ,y+ radius/4) ;

//遞迴

int x2 = 0 ;

int y2 = 0 ;

if(root.leftchild != null)

if(root.rightchild != null)

}#endregion

#endregion

}整個實現最需要花心思的地方就是各個節點的布局。當每個節點的位置確定後,後續的工作就容易 了。

二叉樹 二叉樹

題目描述 如上所示,由正整數1,2,3 組成了一顆特殊二叉樹。我們已知這個二叉樹的最後乙個結點是n。現在的問題是,結點m所在的子樹中一共包括多少個結點。比如,n 12,m 3那麼上圖中的結點13,14,15以及後面的結點都是不存在的,結點m所在子樹中包括的結點有3,6,7,12,因此結點m的所在子樹...

樹 二叉樹 滿二叉樹 完全二叉樹 完滿二叉樹

目錄名稱作用根 樹的頂端結點 孩子當遠離根 root 的時候,直接連線到另外乙個結點的結點被稱之為孩子 child 雙親相應地,另外乙個結點稱為孩子 child 的雙親 parent 兄弟具有同乙個雙親 parent 的孩子 child 之間互稱為兄弟 sibling 祖先結點的祖先 ancesto...

二叉樹,完全二叉樹,滿二叉樹

二叉樹 是n n 0 個結點的有限集合,它或者是空樹 n 0 或者是由乙個根結點及兩顆互不相交的 分別稱為左子樹和右子樹的二叉樹所組成。滿二叉樹 一顆深度為k且有2 k 1個結點的二叉樹稱為滿二叉樹。說明 除葉子結點外的所有結點均有兩個子結點。所有葉子結點必須在同一層上。完全二叉樹 若設二叉樹的深度...