blob: 913abba004adc2da4221c68037383e2f2c1efb6b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
Algorithms
==========
# Introduction
This includes exercises from the Algorithms lecture.
How to set-up:
1. Set GOPATH, e.g. ~/go
2. Copy algorithms repo to $GOPATH/src/algorithms
Now you are set. We are not using this as a Go module yet.
# Testing
For unit tests run:
``make test``
# Benchmarking
For running benchmars run:
``make bench``
# TODO:
* HeapSort
* ElementarySet (linked list)
* Set with sorted linked list + Bianry Search
|