Skip to content

Commit af57597

Browse files
committed
Merge branch 'readme-30' of https://github.com/sjmillington/tutorials into readme-30
2 parents 931e710 + 746f62c commit af57597

498 files changed

Lines changed: 2608 additions & 2605 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

akka-streams/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
### Relevant articles
22

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

algorithms-genetic/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
## Relevant articles:
22

3-
- [Introduction to Jenetics Library](http://www.baeldung.com/jenetics)
4-
- [Ant Colony Optimization](http://www.baeldung.com/java-ant-colony-optimization)
3+
- [Introduction to Jenetics Library](https://www.baeldung.com/jenetics)
4+
- [Ant Colony Optimization](https://www.baeldung.com/java-ant-colony-optimization)
55
- [Design a Genetic Algorithm in Java](https://www.baeldung.com/java-genetic-algorithm)
66
- [The Traveling Salesman Problem in Java](https://www.baeldung.com/java-simulated-annealing-for-traveling-salesman)
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
## Relevant articles:
22

3-
- [Dijkstra Algorithm in Java](https://www.baeldung.com/java-dijkstra)
3+
- [Dijkstra Shortest Path Algorithm in Java](https://www.baeldung.com/java-dijkstra)
44
- [Introduction to Cobertura](https://www.baeldung.com/cobertura)
55
- [Test a Linked List for Cyclicity](https://www.baeldung.com/java-linked-list-cyclicity)
66
- [Introduction to JGraphT](https://www.baeldung.com/jgrapht)
77
- [A Maze Solver in Java](https://www.baeldung.com/java-solve-maze)
88
- [Create a Sudoku Solver in Java](https://www.baeldung.com/java-sudoku)
99
- [Displaying Money Amounts in Words](https://www.baeldung.com/java-money-into-words)
10-
- [A Collaborative Filtering Recommendation System in Java](https://www.baeldung.com/java-collaborative-filtering-recommendations)
10+
- [A Collaborative Filtering Recommendation System in Java](https://www.baeldung.com/java-collaborative-filtering-recommendations)

algorithms-miscellaneous-3/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
- [Java Two Pointer Technique](https://www.baeldung.com/java-two-pointer-technique)
44
- [Implementing Simple State Machines with Java Enums](https://www.baeldung.com/java-enum-simple-state-machine)
5-
- [Converting Between Roman and Arabic Numerals in Java](http://www.baeldung.com/java-convert-roman-arabic)
6-
- [Practical Java Examples of the Big O Notation](http://www.baeldung.com/java-algorithm-complexity)
5+
- [Converting Between Roman and Arabic Numerals in Java](https://www.baeldung.com/java-convert-roman-arabic)
6+
- [Practical Java Examples of the Big O Notation](https://www.baeldung.com/java-algorithm-complexity)
77
- [Checking If a List Is Sorted in Java](https://www.baeldung.com/java-check-if-list-sorted)
88
- [Checking if a Java Graph has a Cycle](https://www.baeldung.com/java-graph-has-a-cycle)
99
- [A Guide to the Folding Technique in Java](https://www.baeldung.com/folding-hashing-technique)
1010
- [Creating a Triangle with for Loops in Java](https://www.baeldung.com/java-print-triangle)
11-
- [Efficient Word Frequency Calculator in Java](https://www.baeldung.com/java-word-frequency)
11+
- [Efficient Word Frequency Calculator in Java](https://www.baeldung.com/java-word-frequency)

algorithms-sorting/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
## Relevant articles:
22

3-
- [Bubble Sort in Java](http://www.baeldung.com/java-bubble-sort)
3+
- [Bubble Sort in Java](https://www.baeldung.com/java-bubble-sort)
44
- [Merge Sort in Java](https://www.baeldung.com/java-merge-sort)
55
- [Quicksort Algorithm Implementation in Java](https://www.baeldung.com/java-quicksort)
66
- [Insertion Sort in Java](https://www.baeldung.com/java-insertion-sort)
77
- [Heap Sort in Java](https://www.baeldung.com/java-heap-sort)
88
- [Shell Sort in Java](https://www.baeldung.com/java-shell-sort)
99
- [Counting Sort in Java](https://www.baeldung.com/java-counting-sort)
10+
- [Sorting Strings by Contained Numbers in Java](https://www.baeldung.com/java-sort-strings-contained-numbers)
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
## Relevant articles:
22

3-
[Introduction to Animal Sniffer Maven Plugin](http://www.baeldung.com/maven-animal-sniffer)
3+
[Introduction to Animal Sniffer Maven Plugin](https://www.baeldung.com/maven-animal-sniffer)

annotations/readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
### Relevant Articles:
2-
- [Java Annotation Processing and Creating a Builder](http://www.baeldung.com/java-annotation-processing-builder)
2+
- [Java Annotation Processing and Creating a Builder](https://www.baeldung.com/java-annotation-processing-builder)

antlr/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
### Relevant Articles:
22

3-
- [Java with ANTLR](http://www.baeldung.com/java-antlr)
3+
- [Java with ANTLR](https://www.baeldung.com/java-antlr)

apache-avro/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
### Relevant Articles:
2-
- [Guide to Apache Avro](http://www.baeldung.com/java-apache-avro)
2+
- [Guide to Apache Avro](https://www.baeldung.com/java-apache-avro)

apache-bval/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
### Relevant Articles:
2-
- [Intro to Apache BVal](http://www.baeldung.com/apache-bval)
2+
- [Intro to Apache BVal](https://www.baeldung.com/apache-bval)

0 commit comments

Comments
 (0)