1 write to _stack
Test.Utilities (1)
SmallDictionary.cs (1)
869
_stack
= new Stack<AvlNode>(dict.HeightApprox());
6 references to _stack
Test.Utilities (6)
SmallDictionary.cs (6)
870
_stack
.Push(root);
885
if (
_stack
== null ||
_stack
.Count == 0)
890
var curr =
_stack
.Pop();
894
PushIfNotNull(
_stack
, curr.Left);
895
PushIfNotNull(
_stack
, curr.Right);