public void DisplayPostOrder() { var orderedList = new List <T>(); DisplayPostOrder(Root, orderedList); PrintHelpers.Print(orderedList, " "); }
public static void Print <T>( this IGenAdvanced <T> advanced, int?iterations = null, int?seed = null, int?size = null, Action <string>?stdout = null) { var sample = advanced.SamplePresentationalWithMetrics( iterations: iterations, seed: seed, size: size); PrintHelpers.Print(sample.Values, sample.Discards, stdout); }