Skip to content

Scanf-s/goods

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Goods

Data structures and algorithms implemented in Go (generics), for study and review.

The goal is to understand how each structure works by building it from scratch.

Data Structures

1. Linear Data Structures

List

  • ArrayList (Dynamic Array)
  • SinglyLinkedList
  • DoublyLinkedList
  • CircularLinkedList

Stack

  • ArrayStack
  • LinkedStack

Queue

  • ArrayQueue
  • LinkedQueue
  • CircularQueue
  • Deque (Double-ended Queue)
  • PriorityQueue

2. Tree Data Structures

Binary Trees

  • BinaryTree (basic)
  • BinarySearchTree (BST)
  • AVLTree (self-balancing)
  • RedBlackTree

Other Trees

  • Trie (Prefix Tree)
  • Heap (MinHeap, MaxHeap)
  • B-Tree
  • Segment Tree

3. Hash-based Structures

  • HashMap
  • HashSet
  • BloomFilter

4. Graph

  • AdjacencyMatrix
  • AdjacencyList
  • WeightedGraph

About

Datastructure study & implementation using Golang

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors