Skip to content

Commit 0c9a836

Browse files
committed
Update comments
1 parent 895006b commit 0c9a836

File tree

1 file changed

+1
-5
lines changed

1 file changed

+1
-5
lines changed

data_structures/avltree.cpp

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,6 @@
11
/**
22
* \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.
3+
* \brief An implementation of AVL tree.
84
*/
95
#include <algorithm> /// for std::max
106
#include <cassert> /// for assert

0 commit comments

Comments
 (0)