Posts

Showing posts from February, 2022

Collection Framework

 Linked List: 1. Write a   program to append the specified element to the end of a linked list.   2. Write a   program to iterate through all elements in a linked list.   3. Write a   program to iterate through all elements in a linked list starting at the specified position.   4. Write a   program to iterate a linked list in reverse order.   5. Write a   program to insert the specified element at the specified position in the linked list.   6. Write a   program to insert elements into the linked list at the first and last position.   7. Write a   program to insert the specified element at the front of a linked list.   8. Write a   program to insert the specified element at the end of a linked list.   9. Write a   program to insert some elements at the specified position into a linked list.   10.Write a...