We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 895006b commit 0c9a836Copy full SHA for 0c9a836
data_structures/avltree.cpp
@@ -1,10 +1,6 @@
1
/**
2
* \file
3
- * \brief A simple tree implementation using nodes
4
- *
5
- * \todo update code to use C++ STL library features and OO structure
6
- * \warning This program is a poor implementation and does not utilize any of
7
- * the C++ STL features.
+ * \brief An implementation of AVL tree.
8
*/
9
#include <algorithm> /// for std::max
10
#include <cassert> /// for assert
0 commit comments