A program has the following code to define a node.
struct node {
int data;
struct node* left;
struct node* right;
}
This node type would belong to which type of a data structure?
1
Queues
2
linked list
3
Binary tree
4
Circular list
A program has the following code to define a node.
struct node {
int data;
struct node* left;
struct node* right;
}
This node type would belong to which type of a data structure?