Learning Functional Data Structures and Algorithms published by Packt
Scala Clojure
Switch branches/tags
Nothing to show
Fetching latest commit…
Cannot retrieve the latest commit at this time.
Permalink
Failed to load latest commit information.
Chapter03
Chapter04 Code files added Feb 16, 2017
Chapter05
Chapter06 Code files added Feb 16, 2017
Chapter07 Code files added Feb 16, 2017
Chapter08
Chapter09
Chapter10 Code files added Feb 16, 2017
Chapter11
Chapter12
Chapter13
LICENSE
README.md Update README.md Feb 16, 2017

README.md

#Learning Functional Data Structures and Algorithms This is the code repository for Learning Functional Data Structures and Algorithms, published by Packt. It contains all the supporting project files necessary to work through the book from start to finish.

About the Book

This book is about functional algorithms and data structures. Algorithms and data structures are fundamentals of computer programming.

##Instructions and Navigation All of the code is organized into folders. Each folder starts with a number followed by the application name. For example, Chapter02.

The code will look like the following:

user=> (def v [7 11 19 52 42 72]) 
#'user/v 
user=> (def v1 (conj v 52)) 
#'user/v1 

You need to install Scala and Clojure. All the examples were tested with Scala version 2.11.7. The Clojure examples were tested with Clojure version 1.6.0. You don’t need any IDE as most of the examples are small enough, so you can key them in the REPL (Read/Eval/Print Loop).

You also need a text editor. Use whichever you are comfortable with.

##Related Data Structure and Algorithms Products

###Suggestions and Feedback Click here if you have any feedback or suggestions.