예제 #1
0
파일: RBTree.cs 프로젝트: ArcaneArsenic/HW3
 /// <summary>
 ///checks tree rules for color distribution
 ///see hw instructions, lot of stuff here
 /// </summary>
 /// <param name="node"></param>
 private void FixInsert(RBTree <T> node)
 {
 }
예제 #2
0
 private void uxLoadNames_Click(object sender, EventArgs e)
 {
     _tree = (RBTree <NameEntry>)sender;
     try { new TreeForm((ITree)_tree, 10000).Show(); }
     catch (Exception) { MessageBox.Show("Error"); }
 }