Created
April 9, 2019 09:36
Revisions
-
ssaurel revised this gist
Apr 9, 2019 . 1 changed file with 8 additions and 8 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,11 +1,11 @@ public class Node<T> { T data; Node<T> left; Node<T> right; public Node(T data) { this.data = data; } } -
ssaurel created this gist
Apr 9, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ public class Node<T> { T data; Node<T> left; Node<T> right; public Node(T data) { this.data = data; } }