From ced637c301bf01a62d2af2d05270023169391162 Mon Sep 17 00:00:00 2001 From: James Mc Dermott Date: Thu, 27 Apr 2017 15:45:42 +0100 Subject: [PATCH] Rename data_structures/BinaryTree.java to data_structures/Trees/BinaryTree.java --- data_structures/{ => Trees}/BinaryTree.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename data_structures/{ => Trees}/BinaryTree.java (99%) diff --git a/data_structures/BinaryTree.java b/data_structures/Trees/BinaryTree.java similarity index 99% rename from data_structures/BinaryTree.java rename to data_structures/Trees/BinaryTree.java index b26525cfc..3d05f1767 100644 --- a/data_structures/BinaryTree.java +++ b/data_structures/Trees/BinaryTree.java @@ -267,4 +267,4 @@ class Tree{ System.out.print(localRoot.data + " "); } } -} \ No newline at end of file +}