Question generated for student with ID 0457494

  (You are responsible to check if your student number is correct!)
  Read carefully the binary tree implementation given in class. Using that given tree structure to dothe following problems:
  1. Write a function to count the number of nodes of a given binary tree.
  2. Write a function to check if a given tree is a full binary tree. It should return 1 if the tree is a full binary tree, or 0 otherwise. Definition: Full binary tree is binary tree in which each node has exactly zero or two children.
  3. Write a function to delete the root node of a tree and replace with the right-most leaf node. (Hint. Write another function to delete the right-most leaf node first!)
  4. Write a function to delete the minimum value of a binary tree.
  5. Write a function to compare two tree if they are the same. The function should return 1 if they are the same, or 0 otherwise.
  You must also write a main function with other sufficient function calls to Insert() and Print() and several test cases to make sure your program performs properly! Each program should be in a seperate file with meaningfulcomments for your code. You may re-use as much code as needed for each part.