openldap/libraries/libavl/testavl.c

117 lines
2.4 KiB
C
Raw Normal View History

1998-08-09 08:43:13 +08:00
/* testavl.c - Test Tim Howes AVL code */
1998-10-25 09:41:42 +08:00
#include "portable.h"
1998-08-09 08:43:13 +08:00
1998-10-25 09:41:42 +08:00
#include <stdio.h>
1998-08-09 08:43:13 +08:00
1999-06-03 08:37:44 +08:00
#include <ac/stdlib.h>
1998-10-25 09:41:42 +08:00
#include <ac/string.h>
1998-08-09 08:43:13 +08:00
1999-06-01 04:40:42 +08:00
#define AVL_INTERNAL
#define AVL_NONREENTRANT
1998-10-25 09:41:42 +08:00
#include "avl.h"
static void ravl_print LDAP_P(( Avlnode *root, int depth ));
static void myprint LDAP_P(( Avlnode *root ));
1998-08-09 08:43:13 +08:00
int
main( int argc, char **argv )
1998-08-09 08:43:13 +08:00
{
1999-06-01 04:40:42 +08:00
Avlnode *tree = NULL;
1998-08-09 08:43:13 +08:00
char command[ 10 ];
char name[ 80 ];
char *p;
printf( "> " );
while ( fgets( command, sizeof( command ), stdin ) != NULL ) {
switch( *command ) {
case 'n': /* new tree */
( void ) avl_free( tree, (AVL_FREE) free );
1999-06-01 04:40:42 +08:00
tree = NULL;
1998-08-09 08:43:13 +08:00
break;
case 'p': /* print */
( void ) myprint( tree );
break;
case 't': /* traverse with first, next */
#ifdef AVL_NONREENTRANT
1998-08-09 08:43:13 +08:00
printf( "***\n" );
for ( p = (char * ) avl_getfirst( tree );
p != NULL;
p = (char *) avl_getnext())
1998-08-09 08:43:13 +08:00
printf( "%s\n", p );
printf( "***\n" );
#else
printf( "*** reentrant interface not implemented ***" );
#endif
1998-08-09 08:43:13 +08:00
break;
case 'f': /* find */
printf( "data? " );
if ( fgets( name, sizeof( name ), stdin ) == NULL )
exit( 0 );
name[ strlen( name ) - 1 ] = '\0';
if ( (p = (char *) avl_find( tree, name, (AVL_CMP) strcmp ))
1998-08-09 08:43:13 +08:00
== NULL )
printf( "Not found.\n\n" );
else
printf( "%s\n\n", p );
break;
case 'i': /* insert */
printf( "data? " );
if ( fgets( name, sizeof( name ), stdin ) == NULL )
exit( 0 );
name[ strlen( name ) - 1 ] = '\0';
if ( avl_insert( &tree, strdup( name ), (AVL_CMP) strcmp,
1998-10-25 09:41:42 +08:00
avl_dup_error ) != 0 )
1998-08-09 08:43:13 +08:00
printf( "\nNot inserted!\n" );
break;
case 'd': /* delete */
printf( "data? " );
if ( fgets( name, sizeof( name ), stdin ) == NULL )
exit( 0 );
name[ strlen( name ) - 1 ] = '\0';
if ( avl_delete( &tree, name, (AVL_CMP) strcmp ) == NULL )
1998-08-09 08:43:13 +08:00
printf( "\nNot found!\n" );
break;
case 'q': /* quit */
exit( 0 );
break;
case '\n':
break;
default:
printf("Commands: insert, delete, print, new, quit\n");
}
printf( "> " );
}
return( 0 );
1998-08-09 08:43:13 +08:00
}
1998-10-25 09:41:42 +08:00
static void ravl_print( Avlnode *root, int depth )
1998-08-09 08:43:13 +08:00
{
int i;
if ( root == 0 )
return;
ravl_print( root->avl_right, depth+1 );
for ( i = 0; i < depth; i++ )
printf( " " );
printf( "%s %d\n", (char *) root->avl_data, root->avl_bf );
1998-08-09 08:43:13 +08:00
ravl_print( root->avl_left, depth+1 );
}
1998-10-25 09:41:42 +08:00
static void myprint( Avlnode *root )
1998-08-09 08:43:13 +08:00
{
printf( "********\n" );
if ( root == 0 )
printf( "\tNULL\n" );
else
1998-10-25 09:41:42 +08:00
ravl_print( root, 0 );
1998-08-09 08:43:13 +08:00
printf( "********\n" );
}