Skip to content

Commit 3342e2b

Browse files
hamcrest-core:3.0
1 parent 1213cc5 commit 3342e2b

File tree

3 files changed

+14
-18
lines changed

3 files changed

+14
-18
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,4 +61,6 @@ fabric.properties
6161
# Editor-based Rest Client
6262
.idea/httpRequests
6363
.idea
64-
*.iml
64+
*.iml
65+
66+
.vscode

README.md

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
Data Structure Algorithms using Java
66

7-
## Prerequires
7+
## Prerequisites
88

99
1. Git 2.6+
1010
2. Maven 3+
@@ -64,24 +64,19 @@ Data Structure Algorithms using Java
6464

6565
![Preview](doc/singly_circular_linked_list.jpg)
6666

67-
6867
4. Tree
6968

7069
* [BinaryTree](src/main/java/dsa/tree/bst/BinarySearchTree.java)
7170

72-
7371
![Preview](doc/binary_tree.jpg)
7472

7573
* [AVLTree](src/main/java/dsa/tree/avl/AVLTree.java)
7674

77-
7875
![Preview](doc/avl.gif)
7976

80-
8177
* [HuffmanTree](src/main/java/dsa/tree/huffman/HuffmanTree.java)
8278

8379
![Preview](doc/huffman.png)
84-
8580

8681
5. Graph
8782

@@ -110,19 +105,19 @@ Data Structure Algorithms using Java
110105

111106
Clone
112107

113-
```
108+
```shell
114109
git clone https://github.com/humbertodias/java-data-structures-algorithms.git
115110
```
116111

117112
Inside the folder
118113

119-
```
114+
```shell
120115
cd java-data-structures-algorithms
121116
```
122117

123118
Run
124119

125-
```
120+
```shell
126121
mvn test
127122
```
128123
```
@@ -167,7 +162,6 @@ Tests run: 26, Failures: 0, Errors: 0, Skipped: 0
167162
[INFO] ------------------------------------------------------------------------
168163
```
169164

170-
171165
## References
172166

173167
1. [A* Search Algorithm](https://en.wikipedia.org/wiki/A*_search_algorithm)

pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,23 +5,23 @@
55
<artifactId>dsa</artifactId>
66
<version>1.0</version>
77
<packaging>jar</packaging>
8+
<properties>
9+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
10+
<maven.compiler.source>1.8</maven.compiler.source>
11+
<maven.compiler.target>1.8</maven.compiler.target>
12+
</properties>
813
<dependencies>
914
<dependency>
1015
<groupId>junit</groupId>
1116
<artifactId>junit</artifactId>
12-
<version>[4.13.1,)</version>
17+
<version>4.13.2</version>
1318
<scope>test</scope>
1419
</dependency>
1520
<dependency>
1621
<groupId>org.hamcrest</groupId>
1722
<artifactId>hamcrest-core</artifactId>
18-
<version>2.2</version>
23+
<version>3.0</version>
1924
<scope>test</scope>
2025
</dependency>
2126
</dependencies>
22-
<properties>
23-
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
24-
<maven.compiler.source>1.8</maven.compiler.source>
25-
<maven.compiler.target>1.8</maven.compiler.target>
26-
</properties>
2727
</project>

0 commit comments

Comments
 (0)