Tree. remove redunant function

This commit is contained in:
IlyaShurupov 2024-04-01 13:46:13 +03:00
parent 7332e72bb2
commit 86f81fb534
4 changed files with 34 additions and 22 deletions

View file

@ -0,0 +1,16 @@
#include "Tree.hpp"
#include "Timing.hpp"
#include "UnitTest++/UnitTest++.h"
#include <map>
TEST(AVLTreeStream) {
tp::Timer timer(1000);
tp::AvlTree<tp::AvlNumericKey<tp::ualni>> tree;
while (!timer.isTimeout()) {
tree.
}
}