-
Notifications
You must be signed in to change notification settings - Fork 178
/
Copy pathday 23.c
99 lines (88 loc) · 2.16 KB
/
day 23.c
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
#include <math.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
typedef struct Node{
struct Node* left;
struct Node* right;
int data;
}Node;
Node* newNode(int data){
Node* node=(Node*)malloc(sizeof(Node));
node->left=node->right=NULL;
node->data=data;
return node;
}
typedef struct queueNode{
Node* treeNode;
struct queueNode* next;
}queueNode;
typedef struct queue{
queueNode* head;
}queue;
void push(queue* theQueue, Node* treeNode) {
queueNode* insertNode = (queueNode*)malloc(sizeof(queueNode));
insertNode->next=NULL;
insertNode->treeNode = treeNode;
if(theQueue->head == NULL) {
theQueue->head = insertNode;
} else {
queueNode * temp = theQueue->head;
while(temp->next != NULL) {
temp = temp->next;
}
temp->next = insertNode;
}
}
queueNode* pop(queue* theQueue) {
queueNode* returnNode = NULL;
if(theQueue->head == NULL) {
printf("please stop\n");
} else {
returnNode = theQueue->head;
theQueue->head = theQueue->head->next;
}
return returnNode;
}
void levelOrder(Node* root){
queue * theQueue = (queue*)malloc(sizeof(queue));
theQueue->head = NULL;
push(theQueue, root);
while(theQueue->head != NULL) {
queueNode* poppedNode = pop(theQueue);
printf("%d ", poppedNode->treeNode->data);
if(poppedNode->treeNode->left != NULL) {
push(theQueue, poppedNode->treeNode->left);
}
if(poppedNode->treeNode->right != NULL) {
push(theQueue, poppedNode->treeNode->right);
}
}
}
Node* insert(Node* root,int data){
if(root==NULL)
return newNode(data);
else{
Node* cur;
if(data<=root->data){
cur=insert(root->left,data);
root->left=cur;
}
else{
cur=insert(root->right,data);
root->right=cur;
}
}
return root;
}
int main(){
Node* root=NULL;
int T,data;
scanf("%d",&T);
while(T-->0){
scanf("%d",&data);
root=insert(root,data);
}
levelOrder(root);
return 0;
}