aboutsummaryrefslogtreecommitdiff
path: root/lib/algo
diff options
context:
space:
mode:
authorChristian C <cc@localhost>2025-03-07 21:58:41 -0800
committerChristian C <cc@localhost>2025-03-07 21:58:41 -0800
commit0d1f5979dd1d6062af118fae3a1aa1863ea596f2 (patch)
tree4cb9973682409cbc23cd6c93cb26f14c4702d8ed /lib/algo
parent12a1b2269c64bfbe61490a9a2a8eaa84ec3b41de (diff)
Library directories
Diffstat (limited to 'lib/algo')
-rw-r--r--lib/algo/avl_tree.c159
-rw-r--r--lib/algo/flood_fill.c33
2 files changed, 192 insertions, 0 deletions
diff --git a/lib/algo/avl_tree.c b/lib/algo/avl_tree.c
new file mode 100644
index 0000000..db4fa4b
--- /dev/null
+++ b/lib/algo/avl_tree.c
@@ -0,0 +1,159 @@
+#include <lib/algo/avl_tree.h>
+#include <lib/monad.h>
+
+#include <stddef.h>
+#include <stdio.h>
+
+// Get the height of an AVL node
+uint8_t get_height(struct AVLNode* node)
+{
+ if (node == NULL) {
+ return 0;
+ }
+ return node->height;
+}
+
+// Get the Maximum Height between two
+uint8_t max_height(uint8_t a, uint8_t b)
+{
+ return (a > b) ? a : b;
+}
+
+// Get the balance factor of a node
+ssize_t get_balance_factor(struct AVLNode* node)
+{
+ if (node == NULL) {
+ return 0;
+ }
+ return get_height(node->left) - get_height(node->right);
+}
+
+// Rotate an AVL node right
+struct AVLNode* right_rotate(struct AVLNode* parent)
+{
+ struct AVLNode* child1 = parent->left;
+ struct AVLNode* child2 = child1->right;
+
+ child1->right = parent;
+ parent->left = child2;
+
+ parent->height = max_height(get_height(parent->left), get_height(parent->right)) + 1;
+ child1->height = max_height(get_height(child1->left), get_height(child1->right)) + 1;
+ return child1;
+}
+
+// Rotate an AVL node left
+struct AVLNode* left_rotate(struct AVLNode* parent)
+{
+ struct AVLNode* child1 = parent->right;
+ struct AVLNode* child2 = child1->left;
+
+ child1->left = parent;
+ parent->right = child2;
+
+ parent->height = max_height(get_height(parent->left), get_height(parent->right)) + 1;
+ child1->height = max_height(get_height(child1->left), get_height(child1->right)) + 1;
+ return child1;
+}
+
+// Create AVL node
+struct AVLNode* create_avl_node(void* data, bool_t (*compare)(void*, void*))
+{
+ struct AVLNode* node = (struct AVLNode*)malloc(sizeof(struct AVLNode));
+ if (node == NULL) {
+ return NULL;
+ }
+ node->data = data;
+ node->compare = compare;
+ node->left = NULL;
+ node->right = NULL;
+ node->height = 1; // Leaf initially
+ return node;
+}
+
+// Insert data into AVL tree
+struct Result avl_insert(struct AVLNode* node, void* data, bool_t (*compare)(void*, void*))
+{
+ struct Result result;
+ // 1. Standard BST insertion
+ if (node == NULL) {
+ return (struct Result) {create_avl_node(data, compare), TRUE};
+ }
+
+ struct MaskData *node_data = (struct MaskData*)node->data;
+ if (node->compare(data, node_data)) {
+ result = avl_insert(node->left, data, compare);
+ if (!result.success) {
+ fprintf(stderr, "Failed to insert!");
+ return result;
+ }
+ node->left = (struct AVLNode*)result.data;
+ } else if (node->compare(node->data, data)) {
+ result = avl_insert(node->right, data, compare);
+ if (!result.success) {
+ fprintf(stderr, "Failed to insert!");
+ return result;
+ }
+ node->right = (struct AVLNode*)result.data;
+ } else {
+ return (struct Result) {node, FALSE};
+ }
+
+ // 2. Update height of the ancestor node
+ node->height = 1 + max_height(get_height(node->left), get_height(node->right));
+
+ ssize_t balance = get_balance_factor(node);
+
+ // 4. If the node becomes unbalanced
+
+ // LeftLeft
+ if ((balance > 1) && node->compare(data, node->left->data)) {
+ return (struct Result) {right_rotate(node), TRUE};
+ }
+ // RightRight
+ if ((balance < -1) && node->compare(node->right->data, data)) {
+ return (struct Result) {left_rotate(node), TRUE};
+ }
+ // LeftRight
+ if ((balance > 1) && node->compare(node->left->data, data)) {
+ return (struct Result) {right_rotate(node), TRUE};
+ }
+ // RightLeft
+ if ((balance < -1) && node->compare(data,node->right->data)) {
+ return (struct Result) {left_rotate(node), TRUE};
+ }
+ return (struct Result) {node, TRUE};
+}
+
+// In-order traversal print pointer
+void print_in_order(struct AVLNode* root)
+{
+ if (root != NULL) {
+ print_in_order(root->left);
+ printf("%p ", root->data);
+ print_in_order(root->right);
+ }
+}
+
+// Free avl tree nodes starting at root
+void free_avl_tree(struct AVLNode* root)
+{
+ if (root != NULL) {
+ free_avl_tree(root->left);
+ free_avl_tree(root->right);
+ free(root);
+ }
+}
+
+// Free avl tree and their data starting at root
+void free_avl_tree_nodes(struct AVLNode* root)
+{
+ if (root != NULL) {
+ free_avl_tree_nodes(root->left);
+ free_avl_tree_nodes(root->right);
+ if (root->data != NULL) {
+ free(root->data);
+ }
+ free(root);
+ }
+}
diff --git a/lib/algo/flood_fill.c b/lib/algo/flood_fill.c
new file mode 100644
index 0000000..62db658
--- /dev/null
+++ b/lib/algo/flood_fill.c
@@ -0,0 +1,33 @@
+#include <lib/algo/flood_fill.h>
+
+// Flood
+// Floods a mask from a given set of image to determine the contiguous regions
+// 1. Check that the (x,y) is within the picture
+// 2. Check if the (x,y) coordinate in the mask is unused
+// 3. Check if the (x,y) coordinate in the image is non-background
+// 4. Check if the (x,y) coordinate in the image is the same color as the fill color
+// 5. If all hold, set the label for the pixel, and check each neighbor
+// Otherwise, stop flooding
+bool_t flood(uint8_t* image, uint16_t* mask, size_t width, size_t height, size_t channels, size_t x, size_t y, uint8_t* fill_color, uint16_t label)
+{
+ if ((x >= width) | (y >= height)) {
+ return FALSE;
+ }
+ size_t coord = x + y*width;
+ if (mask[coord] != 0) {
+ return FALSE;
+ }
+ if (color_zero(&(image[coord*channels]), channels)) {
+ return FALSE;
+ }
+ if (color_equal(&(image[coord*channels]), fill_color, channels)) {
+ mask[coord] = label;
+ flood(image, mask, width, height, channels, x, y+1, fill_color, label);
+ flood(image, mask, width, height, channels, x, y-1, fill_color, label);
+ flood(image, mask, width, height, channels, x+1, y, fill_color, label);
+ flood(image, mask, width, height, channels, x-1, y, fill_color, label);
+ return TRUE;
+ }
+ return FALSE;
+}
+