Skip to content

Commit 04856ba

Browse files
author
Jegors Čemisovs
authored
Merge pull request #17 from rabestro/package
Updated web page
2 parents e9281dc + 1273203 commit 04856ba

File tree

1 file changed

+12
-10
lines changed

1 file changed

+12
-10
lines changed

Diff for: docs/index.md

+12-10
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ The project implements a class for the general structure of the graph, as well a
44

55
There are implementations and tests for two algorithms:
66

7-
- [Breadth-first search](src/main/java/graph/BreadthFirstSearch.java)
8-
- [Dijkstra's Algorithm](src/main/java/graph/DijkstrasAlgorithm.java)
7+
- [Breadth-first search](https://en.wikipedia.org/wiki/Breadth-first_search)
8+
- [Dijkstra's Algorithm](https://en.wikipedia.org/wiki/Dijkstra%27s_algorithm)
99

1010
The implementation is written in Java 17, the API documentation is available [here](api).
1111
You can also see the [specifications](spock-reports) for the classes generated with the spock-reports.
@@ -14,9 +14,7 @@ You can also see the [specifications](spock-reports) for the classes generated w
1414

1515
Tests are written in groove language. For unit testing, the Spock framework was used. To test the operation of the algorithms, the following sample graphs were created.
1616

17-
#### Small Graph
18-
19-
![Small Graph](assets/small.gif)
17+
#### Small Graph Sample
2018

2119
```groovy
2220
def graph = new Graph([
@@ -27,9 +25,10 @@ Tests are written in groove language. For unit testing, the Spock framework was
2725
2826
```
2927

30-
#### Medium Graph
28+
![Small Graph](assets/small.gif)
29+
3130

32-
![Medium Graph](assets/medium.gif)
31+
#### Medium Graph Sample
3332

3433
```groovy
3534
def graph = new Graph([
@@ -41,9 +40,10 @@ Tests are written in groove language. For unit testing, the Spock framework was
4140
])
4241
```
4342

44-
#### Complex Graph
43+
![Medium Graph](assets/medium.gif)
4544

46-
![Complex Graph](assets/complex.gif)
45+
46+
#### Complex Graph Sample
4747

4848
```groovy
4949
def graph = new Graph([
@@ -56,4 +56,6 @@ Tests are written in groove language. For unit testing, the Spock framework was
5656
G: [C: 4],
5757
H: [G: 3]
5858
])
59-
```
59+
```
60+
![Complex Graph](assets/complex.gif)
61+

0 commit comments

Comments
 (0)