Skip to content

Latest commit

 

History

History
70 lines (49 loc) · 2.43 KB

README.md

File metadata and controls

70 lines (49 loc) · 2.43 KB

Go Data structures and algorithms

This repository contains implementations of various data structures and algorithms using GoLang. The goal is to implement as many as possible while learning and mastering GoLang.

Each implementation is accompanied by unit tests to ensure correctness.

To run the tests, you can use the following command.

go run RunTests.go

To run tests in a single directory, use the command.

# To run tests on the arrays directory
go run RunTests.go ./structures/arrays

Data Structures

Graph representation

Algorithms

Sorting

Searching

Graphing

Basic traversal

Pathfinding