-
Notifications
You must be signed in to change notification settings - Fork 63
/
Copy pathBinary_tree.cpp
68 lines (57 loc) · 1.17 KB
/
Binary_tree.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
// DATA STRUCTURES.cpp
//
// Created by Prince Kumar on 05/07/2020.
// Copyright © 2020 Prince Kumar. All rights reserved.
//
// ---** STANDARD TEMPLATE LIBRARY (STL) in C++ **---
// ---** PRACTICE CODING SKILLS **---
#include <iostream>
using namespace std;
struct node{
int data;
node* left;
node* right;
};
node* newNode(int data){
node* element = new node();
element->data = data;
element->left = NULL;
element->right = NULL;
return element;
}
//node* newNode(int data){
// node* node = new struct node();
// node->data = data;
// node->left = NULL;
// node->right = NULL;
//
// return node;
//}
void printNode(node *n){
while( n!=NULL){
cout<<n->data<<" ";
n = n->left;
}
cout<<endl;
}
int main(){
// make root node
node* root = newNode(1);
/*
1
/ \
NULL NULL
*/
root->left = newNode(2);
/*
1
/ \
2 NULL
/ \
NULL NULL
*/
root->right = newNode(3);
root->left->left = newNode(4);
printNode(root);
}
// 1 2 3 4 5 6 7