baum
changeset 4:24a697f37e7c
trivial output improvement
author | meillo@marmaro.de |
---|---|
date | Thu, 07 Feb 2008 18:05:03 +0100 |
parents | 15d7d6b9766f |
children | c202ccccedb5 |
files | baum.c |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line diff
1.1 --- a/baum.c Thu Feb 07 16:15:07 2008 +0100 1.2 +++ b/baum.c Thu Feb 07 18:05:03 2008 +0100 1.3 @@ -124,11 +124,15 @@ 1.4 /* main */ 1.5 int main(int argc, char* argv[]) { 1.6 init(); 1.7 + 1.8 printTree(root); 1.9 + printf("\n\n"); 1.10 1.11 action(root); 1.12 1.13 + printf("\n\n"); 1.14 printTree(root); 1.15 + 1.16 delete(root); 1.17 1.18 return(0);