We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1863e6b commit e1382c1Copy full SHA for e1382c1
src/main/java/com/thealgorithms/datastructures/lists/SortedLinkedList.java
@@ -5,7 +5,10 @@
5
/**
6
* A SortedLinkedList is a data structure that maintains a sorted list of elements.
7
* Elements are ordered based on their natural ordering or by a Comparator provided at the time of creation.
8
- *
+ * This implementation uses a singly linked list to store the elements.
9
+ * Further details can be found on this link
10
+ * https://runestone.academy/ns/books/published/cppds/LinearLinked/ImplementinganOrderedList.html
11
+ *
12
* @author Muhammad Junaid Khalid
13
* @param int the type of elements in this list
14
*/
0 commit comments