Random reading notes on Algorithms in a nutshell, and some examples re-written in Golang.
Will be updating this project regularly as I progress further down the book.
The examples require GO 1.5 and above to run.
Since I tried to isolate each chapter in its own folder, GOGPATH
will have to be changed to each chapter's root folder in order to run properly.
For example, to run the sample codes for the sort chapter:
cd c4_sorting_algorithms
export GOPATH=`pwd` # Set GOPATH to be the chapter's root folder
cd src/sorts
go run *.go