-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInorder_traversal.cpp
64 lines (63 loc) · 2.12 KB
/
Inorder_traversal.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
// Problem link - https://www.interviewbit.com/problems/inorder-traversal/
/** Problem Solution Function ---------------------------------------------+
* Definition for binary tree |
* struct TreeNode { |
* int val; |
* TreeNode *left; |
* TreeNode *right; |
* TreeNode(int x) : val(x), left(NULL), right(NULL) {} |
* }; |
* |
void inordertraversal(TreeNode* head, vector<int>& solver){ <------------+
if(head == NULL) return;
inordertraversal(head->left, solver);
solver.push_back(head->val);
inordertraversal(head->right, solver);
}
vector<int> Solution::inorderTraversal(TreeNode* A) {
vector<int> solver;
inordertraversal(A, solver);
return solver;
}
*/
#include <bits/stdc++.h>
using namespace std;
class node{
public:
int data;
node* left;
node* right;
node(int val)
{
data = val;
left = NULL;
right = NULL;
}
};
node* binarytreeformer(int data){
if(data == -1) return NULL;
node* ndoe = new node(data);
int leftnode, rightnode;
cout<<"enter data of left node of "<<data<<endl;
cin>>leftnode;
ndoe->left = binarytreeformer(leftnode);
cout<<"enter data of right node of "<<data<<endl;
cin>>rightnode;
ndoe->right = binarytreeformer(rightnode);
return ndoe;
}
void inordertraversal(node* head){
if(head == NULL) return;
inordertraversal(head->left);
cout<<head->data<<" ";
inordertraversal(head->right);
}
int main()
{
int root;
cout<<"Enter the root node data, -1 for empty node"<<endl;
cin>>root;
node* head = binarytreeformer(root);
cout<<"Inorder traversal"<<endl;
inordertraversal(head);
}