-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Leaf_Nodes_BST.cpp
107 lines (95 loc) · 2.49 KB
/
Leaf_Nodes_BST.cpp
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
/* COUNT OF LEAF NODES IN BINARY SEARCH TREE
Binary Search Tree is a special type of binary tree where
1. The value of all the nodes in the left sub-tree is less than or equal to the value of the root.
2. The value of all the nodes in the right sub-tree is greater than value of the root.
3. This rule will be recursively applied to all the left and right sub-trees of the root.
Leaf node is a node which does not have left or right child
No. of leaf nodes varies with the order in which the nodes are inserted
*/
#include <bits/stdc++.h>
using namespace std;
// Declare treeNode with data , rc (right child) and lc (left child )
typedef struct treeNode
{
int data;
struct treeNode *lc;
struct treeNode *rc;
} treeNode;
//to insert a node into BST
treeNode *insertIntoTree(treeNode *root, int data)
{
//If tree is empty insert as root node
if (root == NULL)
{
treeNode *ptr;
ptr = new treeNode;
ptr->data = data;
ptr->lc = NULL;
ptr->rc = NULL;
root = ptr;
}
else
{
// insert recursively in accordance with BST properties
if (root->data >= data)
{
root->lc = insertIntoTree(root->lc, data);
}
else if (root->data < data)
{
root->rc = insertIntoTree(root->rc, data);
}
}
return root;
}
//to count the leaf nodes
int leaf_nodes(treeNode *root)
{
//Initially count of leaf nodes is set as 0
static int count=0;
//If tree is not empty
if (root)
{
//If the node doesn't have any child increment count
if (root->lc == NULL && root->rc == NULL)
count++;
else
{
//recursively check left and right sub-trees
if (root->lc)
leaf_nodes(root->lc);
if (root->rc)
leaf_nodes(root->rc);
}
}
return count;
}
// driver code
int main()
{
//Initialize tree as empty
treeNode *root;
root = NULL;
int n, data;
//Accept the no. of elements and elements as user input
scanf("%d", &n);
for (int i = 0; i < n; i++)
{
scanf("%d", &data);
root = insertIntoTree(root, data);
}
printf("\nNo. of leaf nodes in the binary search tree = %d", leaf_nodes(root));
printf("\n");
return 0;
}
/*
Sample input:
7
1 6 2 5 3 8 4
Sample output:
No. of leaf nodes in the binary search tree = 2
*/
/*
Time complexity : O(n)
Space complexity : O(n)
*/