#include <stdlib.h>
#include <time.h>
#include <iostream.h>
#include <stdio.h>
#include <afx.h>
#include "TestTrees.h"
#include "RedBlackTree.h"
#include "AVLRedBlackTree.h"
#include "TestAVLRedBlackTree.h"
#include "AVLTree.h"
#include "GLIBTree.h"
Go to the source code of this file.
Defines | |
| #define | TREE_SIZE 16 |
| Number of nodes on the tree. | |
| #define | N_ITERATIONS 1024 |
| Number of iterations to test. | |
Functions | |
| void | TestRedBlackTree () |
| Test the red-black tree. | |
| void | TestAVLRedBlackTree (int argc, char **argv) |
| Test the AVL red-black tree. | |
| void | TestAVLTree (int argc, char **argv) |
| Test the AVL tree. | |
| void | TestGLIBTree (int argc, char **argv) |
| Test the GLIB tree. | |
Definition in file TestTrees.cpp.
1.4.4