An open API service indexing awesome lists of open source software.

https://github.com/timolinn/gorithms

CS Algorithms written in Go
https://github.com/timolinn/gorithms

algorithms bit-manipulation ctci-solutions data-structures-and-algorithms golang

Last synced: about 2 months ago
JSON representation

CS Algorithms written in Go

Awesome Lists containing this project

README

        

# gorithms

CS Algorithms written in Go

## Data Structures

+ LinkedLists
+ Stacks
+ Queues
+ Tries
+ Trees
+ Graphs
+ Heaps
+ ArrayLists
+ Vectors
+ Hash Tables

## Algorithms

+ Breadth-First Search
+ Depth-First Search
+ Binary Search

### Sorting

+ Merge Sort
+ Quick Sort
+ Bubble Sort
+ Insertion Sort

## Techniques

+ Big O Time & Space complexities
+ BitManipulation
+ Backtracking
+ Dynamic Programming
+ Memory (Stack vs Heap)
+ Recursion