-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
153 additions
and
80 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
@author Aggelos Giantsios | ||
@copyright 2013 Aggelos Giantsios | ||
@title Welcome to erlang-algorithms! | ||
@doc The goal of this project is to implement some useful algorithms and data structures in Erlang so as to help anyone who may need them. | ||
|
||
== Currently Implemented Data Structures == | ||
<ul> | ||
<li><a href="graph.html">Directed, Undirected, Weighted, Unweighted Graphs</a></li> | ||
<li><a href="heap.html">Min / Max Heaps</a></li> | ||
<li>Union / Find</li> | ||
</ul> | ||
|
||
== Currently Implemented Algorithms == | ||
<ul> | ||
<li>BFS</li> | ||
<li>DFS</li> | ||
<li>Dijkstra</li> | ||
<li>Kruskal</li> | ||
</ul> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
#! /usr/bin/env ruby | ||
|
||
puts `erl -noinput -pa ebin/ -eval "doc:make_doc()" -s init stop` | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
-module(doc). | ||
|
||
-compile(export_all). | ||
|
||
-spec make_doc() -> 'ok'. | ||
make_doc() -> | ||
Mods = ["graph.erl", "heap.erl"], | ||
Fs = lists:map(fun(M) -> filename:absname("src/" ++ M) end, Mods), | ||
edoc:files(Fs, [{dir, "doc"}]). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.