Skip to content

Instantly share code, notes, and snippets.

@njofce
Created March 22, 2020 20:56
Show Gist options
  • Select an option

  • Save njofce/b942d7a470b48d169d89b20c6f8ca9d8 to your computer and use it in GitHub Desktop.

Select an option

Save njofce/b942d7a470b48d169d89b20c6f8ca9d8 to your computer and use it in GitHub Desktop.
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