forked from ktan2020/Intro_Algorithms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreadme.txt
More file actions
executable file
·51 lines (31 loc) · 1.51 KB
/
readme.txt
File metadata and controls
executable file
·51 lines (31 loc) · 1.51 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--
Introduction to Algorithms, 3rd Edition:
https://mitpress.mit.edu/books/introduction-algorithms
Copyright (c) 2014-2015 Kenji Tan
==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--==--
/---------------\
| Introduction: |
\---------------/
This project grew out of a need to rapidly prototype and test "tried and true"
algorithms from *THE* authoritative source. In the past, I had needed to use
'canned' algorithms (as in lifted straight out of *THE* textbook and as close to
pseudocode form as possible) without having to deal with language-specific
syntaxes, quirks, IDE and/or compiler-related issues.
The language of choice for this project is Groovy. (http://www.groovy-lang.org/)
The conciseness and expressivity of Groovy facilitates rapid prototyping and
fast development. No IDE's are required, instead the "IDE" of choice is
groovyconsole.
/----------\
| Testing: |
\----------/
To run the unittests:
gradlew test
A report will be generated in build/reports/tests/index.html
/-------\
| Note: |
\-------/
There are no solutions to exercises here. Just a stable platform on
which to rapidly test and validate your understanding of all algorithms from
the textbook. I hope the source code can be of use to you as much as it has
aided me in my understanding and learning of concepts from the book.
See docs/readme.md for more details.