Tag:tree
All the articles with the tag "tree".
Algorithm Connect! Re: Dive - B Tree
12-03-2022A B-tree is a self-balancing tree data structure that maintains sorted data and allows searches, insertions, and deletions in logarithmic time.
Algorithm Connect! Re: Dive - Red Black Tree
11-08-2022A Red-Black Tree is a tree that's always trying to keep its cool, but never quite succeeds (since it's constantly balancing itself).
Algorithm Connect! Re: Dive - Graph
12-10-2022A Graph data structure consists of a set of vertices (or nodes) and a set of edges that connect these vertices.
Algorithm Connect! Re: Dive - Minimum Spanning Tree
12-16-2022Minimum spanning tree is a subset of the edges of a connected, undirected graph that connects all the vertices together, without any cycles and with the minimum total edge weight.