Question: Write a method called deleteAfter to be included in class KWLinkedList that receives two parameters item 1 and item2 of type E. The method removes

Write a method called deleteAfter to be included in class KWLinkedList that receives two parameters item 1 and item2 of type E. The method removes all occurrences of item2 after the first occurrence of item 1 and returns the number of items removed from the list. If item 1 is not found in the list, the method will not remove any value from the list. Use Listlterator of class KWLinkedList and its methods. Example: itemi: 10 item2:20 list (before method call): 7 20 9 10 20 14 15 20 list (after method call): 7 20 9 10 14 15 It returns 2 Method heading: public int deletetAfter (E item1, E item2) [ For the toolbar, press ALT+F10 (PC) or ALT=FN+F10 (Mac). B IVS Paragraph Arial 14px A Ix od Q == > x? X2 Write a method called deleteAfter to be included in class KWLinkedList that receives two parameters item 1 and item2 of type E. The method removes all occurrences of item2 after the first occurrence of item 1 and returns the number of items removed from the list. If item 1 is not found in the list, the method will not remove any value from the list. Use Listlterator of class KWLinkedList and its methods. Example: itemi: 10 item2:20 list (before method call): 7 20 9 10 20 14 15 20 list (after method call): 7 20 9 10 14 15 It returns 2 Method heading: public int deletetAfter (E item1, E item2) [ For the toolbar, press ALT+F10 (PC) or ALT=FN+F10 (Mac). B IVS Paragraph Arial 14px A Ix od Q == > x? X2
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
