-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtreeNodeCount.c
More file actions
60 lines (39 loc) · 1.19 KB
/
treeNodeCount.c
File metadata and controls
60 lines (39 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#include <stdio.h>
#include <stdlib.h>
typedef struct Node {
int data;
struct Node *left, *right;
} Node;
Node* newNode(int data) {
Node* temp = (Node*)malloc(sizeof(Node));
temp->data = data;
temp->left = temp->right = NULL;
return temp;
}
int countNodes(Node* root) {
if (root == NULL) return 0;
return 1 + countNodes(root->left) + countNodes(root->right);
}
int countLeafNodes(Node* root) {
if (root == NULL) return 0;
if (root->left == NULL && root->right == NULL)
return 1;
return countLeafNodes(root->left) + countLeafNodes(root->right);
}
int countNonLeafNodes(Node* root) {
if (root == NULL) return 0;
if (root->left == NULL && root->right == NULL)
return 0;
return 1 + countNonLeafNodes(root->left) + countNonLeafNodes(root->right);
}
int main() {
Node* root = newNode(1);
root->left = newNode(2);
root->right = newNode(3);
root->left->left = newNode(4);
root->left->right = newNode(5);
printf("Total Nodes: %d\n", countNodes(root));
printf("Terminal (Leaf) Nodes: %d\n", countLeafNodes(root));
printf("Non Terminal (Internal) Nodes: %d\n", countNonLeafNodes(root));
return 0;
}