-
-
Save njofce/b942d7a470b48d169d89b20c6f8ca9d8 to your computer and use it in GitHub Desktop.
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 characters
| export class Tree<T> { | |
| private _root: TreeNode; | |
| constructor(data: T) { | |
| this._root = new TreeNode<T>(data, null); | |
| } | |
| getRoot(): TreeNode { | |
| return this._root; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment