aboutsummaryrefslogtreecommitdiff
path: root/binary_search_tool/full_bisect_test/preorder_norecurse.c.bad
blob: a8b4b4875190cdfc35fe8e0981425dd6be724ba6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#include <stdlib.h>
#include <stdio.h>
#include "bin-trees.h"

static void
real_pre_order_traverse_no_recurse (tree_ptr root)
{
  struct stack_struct *stack = NULL;

  if (root != NULL)
    push (&stack, root);

  while (stack != NULL)
  {
    tree_ptr current = pop (&stack);
    printf ("%d ", current->data);
    if (current->right != NULL)
      push (&stack, current->right);
  }
  return;
}

void
pre_order_traverse_no_recurse (tree_ptr root)
{
  printf ("pre-order traversal, without recursion: \n");
  real_pre_order_traverse_no_recurse (root);
  printf ("\n");
}