26. Find height of a tree with or without recursion.
27. Find the levels in tree and no of node at every level.
28. No of leaves on tree.
29. Find the diameter of tree. Longest distance between two same level nodes.
30. Write pre/in/post order traversal with and without recursion.
31. Serialization of binary tree. Storing data/object in a file and then retrieving it back.
32. Find the least common ancestor for any two given nodes from tree.
33. Threaded binary tree and link inversion tree.
34. Find whether a given tree is BST or not.
35. Write code for inorder successor.
36. Find the kth smallest element of BST.
37. Convert BST to doubly link list.
38. Is the given BST is AVL or not?
27. Find the levels in tree and no of node at every level.
28. No of leaves on tree.
29. Find the diameter of tree. Longest distance between two same level nodes.
30. Write pre/in/post order traversal with and without recursion.
31. Serialization of binary tree. Storing data/object in a file and then retrieving it back.
32. Find the least common ancestor for any two given nodes from tree.
33. Threaded binary tree and link inversion tree.
34. Find whether a given tree is BST or not.
35. Write code for inorder successor.
36. Find the kth smallest element of BST.
37. Convert BST to doubly link list.
38. Is the given BST is AVL or not?
Comments
Post a Comment