Java program that uses data structure (LinkedList) to implement additional methods called getFilter, getMin() and getMax(). getFiltered(..) This method receives a parameter and will return values (in the form of a linked list) larger (if needed, smaller) than the parameter. For example, (1,2,5,4,6,3,7,9) parameter (4) return (5,6,7,9). (uses compareTo). getMax() returns the largest value found in the linked list. (uses compareTo). getMin() return the smallest value in the linked list. (uses compareTo).
thrill4N/Data-structures-and-algorithms-
Folders and files
| Name | Name | Last commit date | ||
|---|---|---|---|---|