openldap/libraries/libavl/testavl.c

150 lines
3.7 KiB
C
Raw Normal View History

1998-08-08 20:43:13 -04:00
/* testavl.c - Test Tim Howes AVL code */
/* $OpenLDAP$ */
2003-11-25 18:17:08 -05:00
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
* Copyright 1998-2003 The OpenLDAP Foundation.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
* Public License.
*
* A copy of this license is available in the file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
*/
/* Portions Copyright (c) 1993 Regents of the University of Michigan.
* All rights reserved.
*
* Redistribution and use in source and binary forms are permitted
* provided that this notice is preserved and that due credit is given
* to the University of Michigan at Ann Arbor. The name of the University
* may not be used to endorse or promote products derived from this
* software without specific prior written permission. This software
* is provided ``as is'' without express or implied warranty.
*/
/* This work was originally developed by the University of Michigan
* (as part of U-MICH LDAP 3.3).
1999-12-12 23:53:59 -05:00
*/
1998-08-08 20:43:13 -04:00
1998-10-24 21:41:42 -04:00
#include "portable.h"
1998-08-08 20:43:13 -04:00
1998-10-24 21:41:42 -04:00
#include <stdio.h>
1998-08-08 20:43:13 -04:00
1999-06-02 20:37:44 -04:00
#include <ac/stdlib.h>
1998-10-24 21:41:42 -04:00
#include <ac/string.h>
1998-08-08 20:43:13 -04:00
1999-05-31 16:40:42 -04:00
#define AVL_INTERNAL
#define AVL_NONREENTRANT
1998-10-24 21:41:42 -04:00
#include "avl.h"
static void ravl_print LDAP_P(( Avlnode *root, int depth ));
static void myprint LDAP_P(( Avlnode *root ));
2002-12-14 17:25:52 -05:00
static int avl_strcmp LDAP_P(( const void *s, const void *t ));
1998-08-08 20:43:13 -04:00
int
main( int argc, char **argv )
1998-08-08 20:43:13 -04:00
{
1999-05-31 16:40:42 -04:00
Avlnode *tree = NULL;
1998-08-08 20:43:13 -04: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, free );
1999-05-31 16:40:42 -04:00
tree = NULL;
1998-08-08 20:43:13 -04:00
break;
case 'p': /* print */
( void ) myprint( tree );
break;
case 't': /* traverse with first, next */
#ifdef AVL_NONREENTRANT
1998-08-08 20:43:13 -04:00
printf( "***\n" );
for ( p = (char * ) avl_getfirst( tree );
p != NULL;
p = (char *) avl_getnext())
1998-08-08 20:43:13 -04:00
printf( "%s\n", p );
printf( "***\n" );
#else
printf( "*** reentrant interface not implemented ***" );
#endif
1998-08-08 20:43:13 -04:00
break;
case 'f': /* find */
printf( "data? " );
if ( fgets( name, sizeof( name ), stdin ) == NULL )
exit( EXIT_SUCCESS );
1998-08-08 20:43:13 -04:00
name[ strlen( name ) - 1 ] = '\0';
2002-12-14 17:25:52 -05:00
if ( (p = (char *) avl_find( tree, name, avl_strcmp ))
1998-08-08 20:43:13 -04: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( EXIT_SUCCESS );
1998-08-08 20:43:13 -04:00
name[ strlen( name ) - 1 ] = '\0';
2002-12-14 17:25:52 -05:00
if ( avl_insert( &tree, strdup( name ), avl_strcmp,
1998-10-24 21:41:42 -04:00
avl_dup_error ) != 0 )
1998-08-08 20:43:13 -04:00
printf( "\nNot inserted!\n" );
break;
case 'd': /* delete */
printf( "data? " );
if ( fgets( name, sizeof( name ), stdin ) == NULL )
exit( EXIT_SUCCESS );
1998-08-08 20:43:13 -04:00
name[ strlen( name ) - 1 ] = '\0';
2002-12-14 17:25:52 -05:00
if ( avl_delete( &tree, name, avl_strcmp ) == NULL )
1998-08-08 20:43:13 -04:00
printf( "\nNot found!\n" );
break;
case 'q': /* quit */
exit( EXIT_SUCCESS );
1998-08-08 20:43:13 -04:00
break;
case '\n':
break;
default:
printf("Commands: insert, delete, print, new, quit\n");
}
printf( "> " );
}
return( 0 );
1998-08-08 20:43:13 -04:00
}
1998-10-24 21:41:42 -04:00
static void ravl_print( Avlnode *root, int depth )
1998-08-08 20:43:13 -04: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-08 20:43:13 -04:00
ravl_print( root->avl_left, depth+1 );
}
1998-10-24 21:41:42 -04:00
static void myprint( Avlnode *root )
1998-08-08 20:43:13 -04:00
{
printf( "********\n" );
if ( root == 0 )
printf( "\tNULL\n" );
else
1998-10-24 21:41:42 -04:00
ravl_print( root, 0 );
1998-08-08 20:43:13 -04:00
printf( "********\n" );
}
2002-12-14 17:25:52 -05:00
static int avl_strcmp( const void *s, const void *t )
{
return strcmp( s, t );
}