trying to implement binary tree walk

This commit is contained in:
Emanuel Rodriguez 2023-07-13 23:16:00 -07:00
parent 63e2868b6e
commit 8ab4d74042
2 changed files with 145 additions and 55 deletions

View File

@ -1,55 +0,0 @@
#include <stdio.h>
#include <stdlib.h>
typedef struct ArrayList {
int capacity;
int index;
int data[];
} ArrayList;
ArrayList* new_arraylist(int cap) {
ArrayList* arr = malloc(sizeof(ArrayList) + cap * sizeof(int));
arr->capacity = cap;
arr->index = 0;
for (int i = 0; i < cap; i++) {
arr->data[i] = 0;
}
return arr;
}
void push_to_array(ArrayList* s, int v) {
if (s->index == s->capacity) {
printf("you attempted to insert %d, but array is at capacity cannot add mode values\n", v);
} else {
s->data[s->index] = v;
s->index++;
}
}
void pop_from_array(ArrayList* s) {
if (s->index == 0) {
printf("there is nothing to remove!\n");
} else {
s->index--;
}
}
typedef struct BinaryNode {
int value;
struct BinaryNode* left;
struct BinaryNode* right;
} BinaryNode;
BinaryNode* new_binary_node(int value) {
BinaryNode* node = malloc(sizeof(BinaryNode));
node->value = value;
return (node);
}
int main() {
return (0);
}

145
c/binary-tree.c Normal file
View File

@ -0,0 +1,145 @@
/*
implementation of binary tree, in the course he just jumps into
search algorithms but uses built in javascript data structures
to jump a bunch of steps, here I write everything from scratch
*/
#include <stdio.h>
#include <stdlib.h>
typedef struct Node {
int value;
struct Node* prev;
} Node;
typedef struct Stack {
int len;
Node* head;
} Stack;
Stack* new_stack() {
Stack* s = malloc(sizeof(Stack));
s->head = NULL;
s->head = 0;
return (s);
}
Node* new_node(int value) {
Node* n = malloc(sizeof(Node));
n->prev = NULL;
n->value = value;
return (n);
}
void push(Stack* stack, Node* node) {
if (stack->len == 0) {
stack->head = node;
stack->len++;
} else {
node->prev = stack->head;
stack->head = node;
stack->len++;
}
}
void pop(Stack* stack) {
if (stack->len > 0) {
Node* node = stack->head;
stack->head = node->prev;
free(node);
}
}
typedef struct IntBinaryNode {
int value;
struct IntBinaryNode* left;
struct IntBinaryNode* right;
} IntBinaryNode;
IntBinaryNode* new_int_binary_node(int value) {
IntBinaryNode* n = malloc(sizeof(IntBinaryNode));
n->value = value;
return (n);
}
typedef struct BinaryTree {
IntBinaryNode* root;
} BinaryTree;
BinaryTree* new_binary_tree(IntBinaryNode* n) {
BinaryTree* b = malloc(sizeof(BinaryTree));
b->root = n;
return (b);
}
void add_child_node(IntBinaryNode* parent, IntBinaryNode* child, char position) {
if (position != 'l' && position != 'r') {
printf("ERROR: position must be either (l)eft or (r)ight\n");
exit(1);
}
if (position == 'l') {
if (parent->left != NULL) {
printf("ERROR: left position of parent is already occupied");
exit(1);
} else {
parent->left = child;
}
} else if (position == 'r') {
if (parent->right != NULL) {
printf("ERROR: right position of parent is already occupied");
exit(1);
} else {
parent->right = child;
}
}
}
// prints the bottom row of a tree
void print_binary_tree(IntBinaryNode* node) {
if (node->left == NULL && node->right == NULL) {
printf("<%d>\n", node->value);
} else {
print_binary_tree(node->left);
print_binary_tree(node->right);
}
}
void walk_tree(IntBinaryNode* current_node, Stack* stack) {
if (current_node->left != NULL && current_node->right != NULL) {
printf("looking at value: %d\n", current_node->value);
push(stack, new_node(current_node->value));
walk_tree(current_node->left, stack);
walk_tree(current_node->right, stack);
}
}
int main() {
/* lets create the following tree
12
4 6
10 11 44 77
*/
IntBinaryNode* root_node = new_int_binary_node(12);
BinaryTree* tree = new_binary_tree(root_node);
add_child_node(root_node, new_int_binary_node(4), 'l');
add_child_node(root_node, new_int_binary_node(6), 'r');
add_child_node(root_node->left, new_int_binary_node(10), 'l');
add_child_node(root_node->left, new_int_binary_node(11), 'r');
add_child_node(root_node->right, new_int_binary_node(44), 'l');
add_child_node(root_node->right, new_int_binary_node(77), 'r');
Stack* stack = new_stack();
walk_tree(root_node, stack);
printf("the len of the stack is %d\n", stack->len);
return (0);
}