Skip to content

Commit 9c5bc36

Browse files
committed
Update JavaDoc
1 parent da13c24 commit 9c5bc36

File tree

11 files changed

+31
-10
lines changed

11 files changed

+31
-10
lines changed

1-0-java-basics/1-3-1-crazy-generics/src/main/java/com/bobocode/basics/CrazyGenerics.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
* Hint: in some cases you will need to refactor the code, like replace {@link Object} with a generic type. In order
2020
* cases you will need to add new fields, create new classes, or add new methods. Always try to read java doc and update
2121
* the code according to it.
22+
* <p><p>
23+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
2224
* <p>
23-
* TODO: if you find this exercise valuable and you want to get more like it, <a href="https://www.patreon.com/bobocode">
24-
* please support us on Patreon</a>
2525
*
2626
* @author Taras Boychuk
2727
*/

2-0-data-structures-and-algorithms/2-2-1-node/src/main/java/com/bobobode/cs/Nodes.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,9 @@
44

55
/**
66
* A class that consists of static methods only and provides util methods for {@link Node}.
7+
* <p><p>
8+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
9+
* <p>
710
*
811
* @author Taras Boychuk
912
*/

2-0-data-structures-and-algorithms/2-2-2-stack/src/main/java/com/bobocode/cs/LinkedStack.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
/**
77
* {@link LinkedStack} is a stack implementation that is based on singly linked generic nodes.
88
* A node is implemented as inner static class {@link Node<T>}.
9+
* <p><p>
10+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
11+
* <p>
912
*
1013
* @param <T> generic type parameter
1114
* @author Taras Boychuk

2-0-data-structures-and-algorithms/2-2-3-linked-queue/src/main/java/com/bobocode/cs/LinkedQueue.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
* {@link LinkedQueue} implements FIFO {@link Queue}, using singly linked nodes. Nodes are stores in instances of nested
77
* class Node. In order to perform operations {@link LinkedQueue#add(Object)} and {@link LinkedQueue#poll()}
88
* in a constant time, it keeps to references to the head and tail of the queue.
9+
* <p><p>
10+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
11+
* <p>
912
*
1013
* @param <T> a generic parameter
1114
* @author Taras Boychuk

2-0-data-structures-and-algorithms/2-2-4-linked-list/src/main/java/com/bobocode/cs/LinkedList.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@
66
/**
77
* {@link LinkedList} is a list implementation that is based on singly linked generic nodes. A node is implemented as
88
* inner static class {@link Node<T>}.
9+
* <p><p>
10+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
11+
* <p>
912
*
1013
* @param <T> generic type parameter
1114
* @author Taras Boychuk

2-0-data-structures-and-algorithms/2-2-5-array-list/src/main/java/com/bobocode/cs/ArrayList.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
/**
66
* {@link ArrayList} is an implementation of {@link List} interface. This resizable data structure
77
* based on an array and is simplified version of {@link java.util.ArrayList}.
8+
* <p><p>
9+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
10+
* <p>
811
*
912
* @author Serhii Hryhus
1013
*/

2-0-data-structures-and-algorithms/2-2-6-binary-search-tree/src/main/java/com/bobocode/cs/RecursiveBinarySearchTree.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,9 @@
88
* {@link RecursiveBinarySearchTree} is an implementation of a {@link BinarySearchTree} that is based on a linked nodes
99
* and recursion. A tree node is represented as a nested class {@link Node}. It holds an element (a value) and
1010
* two references to the left and right child nodes.
11+
* <p><p>
12+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
13+
* <p>
1114
*
1215
* @param <T> a type of elements that are stored in the tree
1316
* @author Taras Boychuk

2-0-data-structures-and-algorithms/2-2-7-hash-table/src/main/java/com/bobocode/cs/HashTable.java

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,12 @@
1818
* calling method resizeTable, or it will be done automatically once the table reach resize threshold.
1919
* <p>
2020
* The initial array size (initial capacity) is 8.
21+
* <p><p>
22+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
23+
* <p>
2124
*
22-
* @param <K> - key type
23-
* @param <V> - value type
25+
* @param <K> key type
26+
* @param <V> value type
2427
* @author Taras Boychuk
2528
*/
2629
public class HashTable<K, V> implements Map<K, V> {

5-0-functional-programming/5-1-1-crazy-lambdas/src/main/java/com/bobocode/fp/CrazyLambdas.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@
1212
* {@link ExerciseNotCompletedException}.
1313
* <p>
1414
* TODO: remove exception and implement each method of this class using lambda or method reference
15+
* <p><p>
16+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
1517
* <p>
16-
* TODO: if you find this exercise valuable and you want to get more like it,
17-
* <a href="https://www.patreon.com/bobocode">please support us on Patreon</a>
1818
*
1919
* @author Taras Boychuk
2020
*/

5-0-functional-programming/5-2-1-crazy-streams/src/main/java/com/bobocode/fp/CrazyStreams.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
* {@link ExerciseNotCompletedException}.
1515
* <p>
1616
* TODO: remove exception throwing and implement each method using Stream API
17+
* <p><p>
18+
* <strong>TODO: to get the most out of your learning, <a href="https://www.bobocode.com/learn">visit our website</a></strong>
1719
* <p>
18-
* TODO: if you find this exercise valuable and you want to get more like it, <a href="https://www.patreon.com/bobocode">
19-
* please support us on Patreon</a>
2020
*
2121
* @author Taras Boychuk
2222
*/

0 commit comments

Comments
 (0)