CLO5 Questions total 10-marks: Use different data structures to implement different searching and sorting techniques (30
-
- Site Admin
- Posts: 899603
- Joined: Mon Aug 02, 2021 8:13 am
CLO5 Questions total 10-marks: Use different data structures to implement different searching and sorting techniques (30
Questions total 10-marks: Use different data structures to implement different searching and sorting techniques (30 minutes) Q5. Complete the java function below which finds and returns the minimum value in a LinkedList containing Integer values. Note: the function will throw an Exception containing the message "list is empty!" if the LinkedList is empty. (10 marks) public static Integer minimum(LinkedList<Integer> list) throws Exception { // write your code below
CLO5