forked from HarshCasper/NeoAlgo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
BST_Sort.cpp
99 lines (90 loc) · 2.19 KB
/
BST_Sort.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
/* SORTING USING 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.
Inorder traversal
1. Traverse the left subtree
2. Visit the root.
3. Traverse the right subtree
Inorder traversal in BST gives sorted list
*/
#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;
int count = 0;
//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 sort-inorder traversal gives sorted list
void inorder(treeNode *root)
{
//If tree is empty
if (root)
{
// recursively visit left sub-tree,root and right sub-tree
inorder(root->lc);
printf("%d ", root->data);
inorder(root->rc);
}
}
// 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("\nSorted list : ");
inorder(root);
printf("\n");
return 0;
}
/*
Sample input:
7
1 2 5 3 7 4 6
Sample output:
1 2 3 4 5 6 7
*/
/*
Time complexity : O(n)
Space complexity : O(n)
*/