Skip to content

Scanf-s/goods

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

22 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Goods

Data structures and Algorithm implementation using Golang for study and review with Claude.

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