-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBSTTransversals.cpp
94 lines (79 loc) · 2 KB
/
BSTTransversals.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
/*
Given a Binary Search Tree ,Calculate its Inorder ,Postorder and PreOrder
Input : A BST
Output : Copy Inorder/Postorder/Preorder into the array specified .
Note : Memory for the Array is already allocated ,Dont allocate it again using malloc
->Take help of helper functions which are actually solving the problem .
->Dont Process Invalid Inputs
Bonus Task :
->Go to the BSTTransversals Spec File ,We have left a custom test case for you ,Try to fill
it and understand how testing works .
*/
#include <stdio.h>
struct node
{
struct node * left;
int data;
struct node *right;
};
// Helper Functions //
void inorderHelperFunc(struct node *root, int *arr, int *index);
void preorderHelperFunc(struct node *root, int *arr, int *index);
void postorderHelperFunc(struct node *root, int *arr, int *index);
void inorder(struct node *root, int *arr)
{
if (root == NULL || arr == NULL)
{
return;
}
int index = 0;
inorderHelperFunc(root, arr, &index);
}
void inorderHelperFunc(struct node *root, int *arr,int *index)
{
if (root == NULL)
{
return;
}
inorderHelperFunc(root->left, arr,index);
arr[(*index)++] = root->data;
inorderHelperFunc(root->right, arr, index);
}
void preorder(struct node *root, int *arr)
{
if (root == NULL || arr == NULL)
{
return;
}
int index = 0;
preorderHelperFunc(root, arr, &index);
}
void preorderHelperFunc(struct node *root, int *arr, int *index)
{
if (root == NULL)
{
return;
}
arr[(*index)++] = root->data;
preorderHelperFunc(root->left, arr, index);
preorderHelperFunc(root->right, arr, index);
}
void postorder(struct node *root, int *arr)
{
if (root == NULL || arr == NULL)
{
return;
}
int index = 0;
postorderHelperFunc(root, arr, &index);
}
void postorderHelperFunc(struct node *root, int *arr, int *index)
{
if (root == NULL)
{
return;
}
postorderHelperFunc(root->left, arr, index);
postorderHelperFunc(root->right, arr, index);
arr[(*index)++] = root->data;
}