Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.24 KB | None | 0 0
  1. class BST {
  2. constructor() {
  3. this.root = null
  4. }
  5.  
  6. postOrder(root) {
  7. if (!root) {
  8. return 'Tree is empty'
  9. } else {
  10. this.postOrder(root.left)
  11. this.postOrder(root.right)
  12. console.log(root.value)
  13. }
  14. }
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement