[PR #216] [CLOSED] Adding AVLtrees, and Binary Trees which are being compared #495

Open
opened 2026-01-29 15:13:14 +00:00 by claunia · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/TheAlgorithms/C/pull/216
Author: @daringplanet
Created: 1/30/2019
Status: Closed

Base: masterHead: master


📝 Commits (1)

  • 2c0e73c Adding AVLtrees, and Binary Trees which are being compared

📊 Changes

12 files changed (+1152 additions, -0 deletions)

View changed files

data_structures/AVLtrees/.nfs0000000004441c390000000a (+0 -0)
data_structures/AVLtrees/AVLTree.c (+521 -0)
data_structures/AVLtrees/AVLTree.h (+100 -0)
data_structures/AVLtrees/AVLTree.o (+0 -0)
data_structures/AVLtrees/BinarySearchTree.c (+263 -0)
data_structures/AVLtrees/BinarySearchTree.h (+85 -0)
data_structures/AVLtrees/BinarySearchTree.o (+0 -0)
data_structures/AVLtrees/Makefile (+17 -0)
data_structures/AVLtrees/README.txt (+16 -0)
data_structures/AVLtrees/compare.c (+150 -0)
data_structures/AVLtrees/compare.o (+0 -0)
data_structures/AVLtrees/run.exe (+0 -0)

📄 Description

I have created my own AVL Trees and Binary Tree and compared the difference in the worst case scenario when creating the trees, showing the difference in time.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/TheAlgorithms/C/pull/216 **Author:** [@daringplanet](https://github.com/daringplanet) **Created:** 1/30/2019 **Status:** ❌ Closed **Base:** `master` ← **Head:** `master` --- ### 📝 Commits (1) - [`2c0e73c`](https://github.com/TheAlgorithms/C/commit/2c0e73c67e20e20fc122a2dd2694c57cf77b5d36) Adding AVLtrees, and Binary Trees which are being compared ### 📊 Changes **12 files changed** (+1152 additions, -0 deletions) <details> <summary>View changed files</summary> ➕ `data_structures/AVLtrees/.nfs0000000004441c390000000a` (+0 -0) ➕ `data_structures/AVLtrees/AVLTree.c` (+521 -0) ➕ `data_structures/AVLtrees/AVLTree.h` (+100 -0) ➕ `data_structures/AVLtrees/AVLTree.o` (+0 -0) ➕ `data_structures/AVLtrees/BinarySearchTree.c` (+263 -0) ➕ `data_structures/AVLtrees/BinarySearchTree.h` (+85 -0) ➕ `data_structures/AVLtrees/BinarySearchTree.o` (+0 -0) ➕ `data_structures/AVLtrees/Makefile` (+17 -0) ➕ `data_structures/AVLtrees/README.txt` (+16 -0) ➕ `data_structures/AVLtrees/compare.c` (+150 -0) ➕ `data_structures/AVLtrees/compare.o` (+0 -0) ➕ `data_structures/AVLtrees/run.exe` (+0 -0) </details> ### 📄 Description I have created my own AVL Trees and Binary Tree and compared the difference in the worst case scenario when creating the trees, showing the difference in time. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
claunia added the pull-request label 2026-01-29 15:13:14 +00:00
Sign in to join this conversation.
1 Participants
Notifications
Due Date
No due date set.
Dependencies

No dependencies set.

Reference: starred/C#495