From 7e7ddb63cf68d8733a134bfbd22d309c7e152f26 Mon Sep 17 00:00:00 2001 From: Kyle K Date: Sat, 11 Dec 2010 18:50:00 -0600 Subject: implement prefix, infix, and postfix binary tree print --- trees.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'trees.h') diff --git a/trees.h b/trees.h index 93f63d9..95a1c0a 100644 --- a/trees.h +++ b/trees.h @@ -16,7 +16,8 @@ struct tnode /* function prototypes */ struct tnode *bintree_insert(struct tnode *, char *); -void treeprint_inorder(struct tnode *); - +void treeprint_prefix(struct tnode *); +void treeprint_infix(struct tnode *); +void treeprint_postfix(struct tnode *); #endif -- cgit v1.2.3