LinkedListUI is a Java Swing application that allows users to perform various operations on a singly linked list. This project is designed to demonstrate basic operations such as adding nodes at the beginning or end, deleting nodes, searching for nodes, and displaying the entire linked list.
Features Add (At end): Add a value to the end of the linked list. Add (At beginning): Add a value to the beginning of the linked list. Delete: Delete a value from the linked list. Search: Search for a value in the linked list. Display: Display the entire linked list.