InterviewSolution
Saved Bookmarks
| 1. |
What Are Binary Trees ? |
|
Answer» A binary tree, in C, is implemented USING LINKED list. Here every node has two pointers- left and right. To add or remove from a tree list there is a certain method.Basically linked list FORMS a tree like structure which is called Binary tree. A binary tree, in C, is implemented using linked list. Here every node has two pointers- left and right. To add or remove from a tree list there is a certain method.Basically linked list forms a tree like structure which is called Binary tree. |
|