Skip to content
#

data-structure

A data structure is a particular way storing and organizing data in a computer for efficient access and modification. Data structures are designed for a specific purpose. Examples include arrays, linked lists, and classes.

Here are 73 public repositories matching this topic...

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.

  • Updated Dec 16, 2022
  • Go
Followers
76.4k followers
Wikipedia
Wikipedia

Related Topics

algorithm