Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 702 Bytes

README.md

File metadata and controls

28 lines (20 loc) · 702 Bytes

Data Structures in Go

The most common data structures implemented in Golang for beginners, following best practices.

What's been implemented:

  • Stack
  • Queue
  • Linked List
  • Binary Search Tree
  • Hash Table

Need implementation

  • Doubly Linked List
  • Circular Linked List
  • AVL Tree
  • Set
  • Graph

Solved Challenges using Data Structures

  • Linked List
    • Reverse List using Head Node

You are more than welcome to contribute to this repository. Please follow the naming conventions according to the golang standards.

These implementations are for demonstrative purposes only.