예제 #1
0
 void PaintTree()
 {
     if (_tree == null)
     {
         return;
     }
     pictureBox1.Image = _tree.Draw();
 }
예제 #2
0
 void PaintTree()
 {
     InOrderTxt.Text = _tree.Sorter();
     if (_tree == null)
     {
         return;
     }
     pictureBox1.Image = _tree.Draw();
 }
예제 #3
0
 void PaintTree()
 {
     if (_tree == null)
     {
         return;
     }
     pictureBox1.Image = _tree.Draw();
     textBox1.Text     = _tree.InSort();
     textBox2.Text     = _tree.PreSort();
     textBox3.Text     = _tree.PostSort();
 }