Categorygithub.com/tsagae/goalgo
repository
0.1.1
Repository: https://github.com/tsagae/goalgo.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# README

Goalgo(rithms and data structures)

Implementation of various algorithms and data structures in golang

Now reworked with generics and interfaces!

Data Structures

  • Binary Tree
  • Linked List (doubly linked)
  • Stack
  • Queue
  • Priority Queue (Heap)
  • Set (Implemented with a map)
  • Graph (Directed and Undirected)

Algorithms

  • Sorting

    • Selection sort
    • Insertion sort
    • Bubble sort
    • Merge sort
    • Heap sort
    • quicksort
  • Search

    • BFS
    • DFS
  • Pathfinding

    • Dijkstra
  • Minimum Spanning Tree

    • Prim

Installation

  1. cd into the directory of your project
  2. go get github.com/tsagae/goalgo