tree-data-structure
There are 35 repositories under tree-data-structure topic.
ooanishoo/family-tree
🌳👨👩👦 A family tree data structure that uses BFS to traverse through the tree to search members and find relationships. Built with @reactjs NextJs, Typescript and Tailwind CSS. Deployed through @vercel
harismuneer/2-3-Tree
🌲 A C++ implementation of all functionalities (insertion, deletion, search etc) of a 2-3 (two-three) Tree using Rotation, Split and Merge operations. (Please share if you find any bug in the code)
Devinterview-io/tree-data-structure-interview-questions
🟣 Tree Data Structure interview questions and answers to help you prepare for your next data structures and algorithms interview in 2024.
azzzrro/Data-Structure-Solutions-3
Data structure solutions encompassing binary search trees, graphs, depth-first search, breadth-first search, heaps including min and max heaps, and tries. These resources are invaluable for both learning and honing coding skills through practical exercises.
ombharatiya/DataStructure-Revision
This is a repository of basic Data Structure Programs done for revision
prathameshbhalekar/Trees-Placement-Questions
Solutions to questions related to tree data structure.
Mohammedvaraliya/Data-Structures-and-Algorithms
Data Structures and Algorithms including Linked List , Stack, Queue, Arrays, Hash Table, Search, Strings, Numbers, Trees
tjkendev/bst-visualization
Binary Search Tree Visualization
vishwassathish/Suffix-Trees
Suffix tree implementation using Ukkonen's suffix tree construction algorithm. Sample program written to find all occurrences of a query_string and rank documents according to relevence
K-Konstantinidis/Freecell-Solitaire-Solver
Solve any FreeCell Solitaire puzzle with 1 of the 4 different path finding algorithms: Breadth 1st Search, Depth 1st Search, Best 1st Search, Astar Search.
ts4f/R-tree
R-tree implementation , STR bulk loading
archimede67/react-tree-files
Small react project to display and browse a tree of files.
Chinmaym49/Trees
About tree data structure...
Lakshitnagar/Data-Structures
Popular questions asked from Data Structures and Algorithms
mudasir45/Graphs-and-Trees--DFS--DFS-
In this repository I have store my competitive programming preparation codes for graphs and trees
pvs1209pvs/Trie-Data-Strucutre
Implementation of the Trie data strucutre.
Srajan1122/CareerBuddy
This website show all the courses you can go for after your current studies.
gustavoC137/game-gourmet-php
Object-oriented exercises, tree data structure, solid and docker
SagarSikchi/Advanced-Data-Structures
This repository contains advanced data structures like Advanced binary tree structures, hashing data structures, heap data structures, and graph data structures.
ArpanMaheshwari144/Tree-Data-Structure
A Tree is a widely used abstract data type that simulates a hierarchical tree structure, with a root value and subtrees of children with a parent node, represented as a set of linked nodes. A Tree data structure can be defined recursively as a collection of nodes, where each node is a data structure consisting of a value and a list of references to nodes. The start of the tree is the "root node" and the reference nodes are the "children". No reference is duplicated and none points to the root.
BaseMax/BinaryTreeGo
Implementation of a binary tree in Go. A Binary Tree is a tree data structure in which each node has at most two children, which are referred to as the left child and the right child. A node with no children is called a leaf node. A node cannot have more than two children.
danieljpgo/parking-lot-tree
:deciduous_tree: solving problems of a parking lot with tree data structure - made with csharp
Davidalimazo/data_structure_and_algorithms_in_js
This repository contains implementation for data structures and algorithms using javaScript
Elis-Vasconcelos/estrutura-dados-algoritmos
Repositório com implementações de estruturas de dados e algoritmos em Python.
Gers2017/trie-ferris
trie data structure
shrey1216/FX-Gui-Maker
Java GUI Builder with Tree Structure
ValerianCoelho/Tree-data-structure-displayer
This program will take the level order sequence of a binary tree as input, and then based on this input it will display the binary tree