Update of /cvsroot/avl/avl/src
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21807
Modified Files:
avlt.cpp avlt.h bst.cpp bst.h
Log Message:
Index: bst.h
===================================================================
RCS file: /cvsroot/avl/avl/src/bst.h,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** bst.h 6 Sep 2004 14:12:06 -0000 1.6
--- bst.h 8 Sep 2004 10:14:46 -0000 1.7
***************
*** 45,50 ****
public:
! Bst();
! Bst(int);
~Bst();
--- 45,50 ----
public:
! // Bst();
! Bst(int = 0);
~Bst();
Index: bst.cpp
===================================================================
RCS file: /cvsroot/avl/avl/src/bst.cpp,v
retrieving revision 1.16
retrieving revision 1.17
diff -C2 -d -r1.16 -r1.17
*** bst.cpp 8 Sep 2004 10:10:41 -0000 1.16
--- bst.cpp 8 Sep 2004 10:14:46 -0000 1.17
***************
*** 20,24 ****
#include "bst.h"
! Bst::Bst()
{
//Bst(0);
--- 20,24 ----
#include "bst.h"
! /*Bst::Bst()
{
//Bst(0);
***************
*** 27,33 ****
setRight(NULL);
setParent(NULL);
! }
! Bst::Bst(int val)
{
setValue(val);
--- 27,33 ----
setRight(NULL);
setParent(NULL);
! }*/
! Bst::Bst(int val )
{
setValue(val);
Index: avlt.h
===================================================================
RCS file: /cvsroot/avl/avl/src/avlt.h,v
retrieving revision 1.9
retrieving revision 1.10
diff -C2 -d -r1.9 -r1.10
*** avlt.h 6 Sep 2004 14:12:06 -0000 1.9
--- avlt.h 8 Sep 2004 10:14:46 -0000 1.10
***************
*** 37,42 ****
public:
! Avlt();
! Avlt( int, int );
~Avlt();
--- 37,42 ----
public:
! // Avlt();
! Avlt( int = 0, int = 0 );
~Avlt();
Index: avlt.cpp
===================================================================
RCS file: /cvsroot/avl/avl/src/avlt.cpp,v
retrieving revision 1.11
retrieving revision 1.12
diff -C2 -d -r1.11 -r1.12
*** avlt.cpp 8 Sep 2004 10:10:41 -0000 1.11
--- avlt.cpp 8 Sep 2004 10:14:46 -0000 1.12
***************
*** 19,23 ****
#include "avlt.h"
!
Avlt::Avlt()
: Bst()
--- 19,23 ----
#include "avlt.h"
! /*
Avlt::Avlt()
: Bst()
***************
*** 25,30 ****
Avlt( 0,0 );
}
!
! Avlt::Avlt(int s,int val)
: Bst(val)
{
--- 25,30 ----
Avlt( 0,0 );
}
! */
! Avlt::Avlt(int s ,int val)
: Bst(val)
{
|