2017-01-03から1日間の記事一覧

canvasで完全二分木を描画したいのですが

canvas の部分は、外側にしろとあれほど・・・ <meta charset="utf-8"> <title>n木分</title> <body> <canvas width="1000" height="300"></canvas> <script> (function () { // NTreeは Nodeというオブジェクトを木の枝のように、親と子(配列)お持つ function Node (parent) { this.parent = parent; this.child = new Array (); } //_________ // 元とい</body></meta>…