-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBST.cpp
More file actions
83 lines (74 loc) · 1.3 KB
/
BST.cpp
File metadata and controls
83 lines (74 loc) · 1.3 KB
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
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<iostream>
struct Node{
int data;
Node * leftChild;
Node* rightChild;
};
Node* root = NULL;
void insert(int data){
Node* tempNode = (Node*)malloc(sizeof(Node));
Node* current;
Node* parent;
tempNode->data = data;
tempNode->leftChild = NULL;
tempNode->rightChild = NULL;
if (root == NULL){
root = tempNode;
}
else{
current = root;
parent = NULL;
while (1){
parent = current;
if (data < parent->data){
current = current->leftChild;
if (current == NULL){
parent->leftChild = tempNode;
return;
}
}
else{
current = current->rightChild;
if (current == NULL){
parent->rightChild = tempNode;
return;
}
}
}
}
}
Node* search(int data) {
Node *current = root;
printf("Visiting elements: ");
if (current->data == data)
printf("found");
else{
while (current->data != data) {
// puts("andt");
if (current != NULL)
printf("this %d ", current->data);
if (current->data > data) {
current = current->leftChild;
}
else {
current = current->rightChild;
}
if (current == NULL) {
return NULL;
}
return current;
}
}
return current;
}
int main(){
insert(1);
insert(2);
Node* hg = search(2);
printf("\n %d", hg->data);
getchar();
return 0;
}