Design and implement an animated search, insertion and deletion in a linked list. The program will have three buttons Search, Insert and Delete. The Search button will take one input value, the value to search for in the linked list, and will output in a popup window the value and index where the value is found. The Insert button will take two inputs, the value to insert in the linked list and the index where it should be inserted in the list. The Delete button will take one input value, the index, and then deletes the specified vale from the linked list.
If invalid data is entered an appropriate error message should be displayed.