AVL tree/C sharp: Difference between revisions

m
→‎Code: Fixed syntax highlighting.
(Created page with "== Code == This code in C# has non-generic AVL Tree Balancing <lang csharp> // Finite Ordered Sets - 4State - Balanced using System; using System.Collections.Generic; publi...")
 
m (→‎Code: Fixed syntax highlighting.)
 
(7 intermediate revisions by 3 users not shown)
Line 1:
== =Code ===
This code in C# has non-generic AVL Tree Balancing
 
<langsyntaxhighlight lang="csharp">
// Finite Ordered Sets - 4State - Balanced
 
Line 766 ⟶ 765:
Utility.BalanceSet(Search, Direction.FromLeft);
Nodes++;
break;
}
}
Line 1,298:
}
}
</syntaxhighlight>
</lang>
9,476

edits