@@ -5,7 +5,6 @@ |
||
5 | 5 | use DataStructures\Lists\Nodes\SimpleLinkedListNode as Node; |
6 | 6 | use DataStructures\Lists\Interfaces\ListInterface; |
7 | 7 | use OutOfBoundsException; |
8 | -use Iterator; |
|
9 | 8 | |
10 | 9 | /** |
11 | 10 | * CircularLinkedList is a single and circular linked list that has |
@@ -3,7 +3,6 @@ |
||
3 | 3 | namespace DataStructures\Trees; |
4 | 4 | |
5 | 5 | use DataStructures\Trees\Interfaces\TreeInterface; |
6 | -use DataStructures\Trees\Nodes\AVLNode as Node; |
|
7 | 6 | |
8 | 7 | class AVLTree implements TreeInterface { |
9 | 8 | public function empty() { |