1 write to _stack
Test.Utilities (1)
SmallDictionary.cs (1)
763
_stack
= new Stack<AvlNode>(dict.HeightApprox());
6 references to _stack
Test.Utilities (6)
SmallDictionary.cs (6)
764
_stack
.Push(root);
779
if (
_stack
== null ||
_stack
.Count == 0)
784
var curr =
_stack
.Pop();
788
PushIfNotNull(
_stack
, curr.Left);
789
PushIfNotNull(
_stack
, curr.Right);