Skip to content

Commit 04dc9dd

Browse files
author
Eugen
authored
Merge pull request eugenp#7932 from alessiostalla/BAEL-17507
#BAEL-17507 add README descriptions
2 parents 4096a15 + 92bb7bf commit 04dc9dd

File tree

12 files changed

+64
-12
lines changed

12 files changed

+64
-12
lines changed

akka-http/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
## Relevant articles:
1+
## Akka HTTP
2+
3+
This module contains articles about Akka HTTP.
4+
5+
### Relevant articles:
26

37
- [Introduction to Akka HTTP](https://www.baeldung.com/akka-http)

akka-streams/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## Akka Streams
2+
3+
This module contains articles about Akka Streams.
4+
15
### Relevant articles
26

37
- [Guide to Akka Streams](https://www.baeldung.com/akka-streams)

algorithms-genetic/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
## Relevant articles:
1+
## Genetic Algorithms
2+
3+
This module contains articles about genetic algorithms.
4+
5+
### Relevant articles:
26

37
- [Introduction to Jenetics Library](https://www.baeldung.com/jenetics)
48
- [Ant Colony Optimization](https://www.baeldung.com/java-ant-colony-optimization)

algorithms-miscellaneous-1/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1-
## Relevant articles:
1+
## Algorithms - Miscellaneous
2+
3+
This module contains articles about algorithms. Some classes of algorithms, e.g., [sorting](/../algorithms-sorting) and
4+
[genetic algorithms](/../algorithms-genetic), have their own dedicated modules.
5+
6+
### Relevant articles:
27

38
- [Validating Input With Finite Automata in Java](https://www.baeldung.com/java-finite-automata)
49
- [Example of Hill Climbing Algorithm](https://www.baeldung.com/java-hill-climbing-algorithm)
510
- [Monte Carlo Tree Search for Tic-Tac-Toe Game](https://www.baeldung.com/java-monte-carlo-tree-search)
611
- [Binary Search Algorithm in Java](https://www.baeldung.com/java-binary-search)
712
- [Introduction to Minimax Algorithm](https://www.baeldung.com/java-minimax-algorithm)
813
- [How to Calculate Levenshtein Distance in Java?](https://www.baeldung.com/java-levenshtein-distance)
9-
- [How to Find the Kth Largest Element in Java](https://www.baeldung.com/java-kth-largest-element)
14+
- [How to Find the Kth Largest Element in Java](https://www.baeldung.com/java-kth-largest-element)
15+
- More articles: [[next -->]](/../algorithms-miscellaneous-2)

algorithms-miscellaneous-2/README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,9 @@
1-
## Relevant articles:
1+
## Algorithms - Miscellaneous
2+
3+
This module contains articles about algorithms. Some classes of algorithms, e.g., [sorting](/../algorithms-sorting) and
4+
[genetic algorithms](/../algorithms-genetic), have their own dedicated modules.
5+
6+
### Relevant articles:
27

38
- [Dijkstra Shortest Path Algorithm in Java](https://www.baeldung.com/java-dijkstra)
49
- [Introduction to Cobertura](https://www.baeldung.com/cobertura)
@@ -8,3 +13,4 @@
813
- [Create a Sudoku Solver in Java](https://www.baeldung.com/java-sudoku)
914
- [Displaying Money Amounts in Words](https://www.baeldung.com/java-money-into-words)
1015
- [A Collaborative Filtering Recommendation System in Java](https://www.baeldung.com/java-collaborative-filtering-recommendations)
16+
- More articles: [[<-- prev]](/../algorithms-miscellaneous-1) [[next -->]](/../algorithms-miscellaneous-3)

algorithms-miscellaneous-4/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
1-
## Relevant articles:
1+
## Algorithms - Miscellaneous
2+
3+
This module contains articles about algorithms. Some classes of algorithms, e.g., [sorting](/../algorithms-sorting) and
4+
[genetic algorithms](/../algorithms-genetic), have their own dedicated modules.
5+
6+
### Relevant articles:
27

38
- [Multi-Swarm Optimization Algorithm in Java](https://www.baeldung.com/java-multi-swarm-algorithm)
49
- [String Search Algorithms for Large Texts](https://www.baeldung.com/java-full-text-search-algorithms)
510
- [Check If a String Contains All The Letters of The Alphabet](https://www.baeldung.com/java-string-contains-all-letters)
611
- [Find the Middle Element of a Linked List](https://www.baeldung.com/java-linked-list-middle-element)
712
- [Find Substrings That Are Palindromes in Java](https://www.baeldung.com/java-palindrome-substrings)
813
- [Find the Longest Substring without Repeating Characters](https://www.baeldung.com/java-longest-substring-without-repeated-characters)
9-
- [Permutations of an Array in Java](https://www.baeldung.com/java-array-permutations)
14+
- [Permutations of an Array in Java](https://www.baeldung.com/java-array-permutations)
15+
- More articles: [[<-- prev]](/../algorithms-miscellaneous-3) [[next -->]](/../algorithms-miscellaneous-5)

algorithms-miscellaneous-5/README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
1-
## Relevant articles:
1+
## Algorithms - Miscellaneous
2+
3+
This module contains articles about algorithms. Some classes of algorithms, e.g., [sorting](/../algorithms-sorting) and
4+
[genetic algorithms](/../algorithms-genetic), have their own dedicated modules.
5+
6+
### Relevant articles:
27

38
- [Converting Between Byte Arrays and Hexadecimal Strings in Java](https://www.baeldung.com/java-byte-arrays-hex-strings)
49
- [Reversing a Binary Tree in Java](https://www.baeldung.com/java-reversing-a-binary-tree)
5-
- [Find If Two Numbers Are Relatively Prime in Java](https://www.baeldung.com/java-two-relatively-prime-numbers)
10+
- [Find If Two Numbers Are Relatively Prime in Java](https://www.baeldung.com/java-two-relatively-prime-numbers)
11+
- More articles: [[<-- prev]](/../algorithms-miscellaneous-4)

core-java-modules/core-java-datetime/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
### Relevant Articles:
66
- [Set the Time Zone of a Date in Java](https://www.baeldung.com/java-set-date-time-zone)
7-
- [Overriding System Time for Testing in Java](https://www.baeldung.com/java-override-system-time)
7+
- [Overriding System Time for Testing in Java](https://www.baeldung.com/java-override-system-time)

persistence-modules/java-mongodb/README.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
1-
## Relevant articles:
1+
## MongoDB
2+
3+
This module contains articles about MongoDB in Java.
4+
5+
### Relevant articles:
26

37
- [A Guide to MongoDB with Java](http://www.baeldung.com/java-mongodb)
48
- [A Simple Tagging Implementation with MongoDB](http://www.baeldung.com/mongodb-tagging)

persistence-modules/jnosql/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,6 @@
1+
## JNoSQL
2+
3+
This module contains articles about JNoSQL.
4+
15
### Relevant Articles:
26
- [A Guide to Eclipse JNoSQL](http://www.baeldung.com/eclipse-jnosql)

0 commit comments

Comments
 (0)