The aim of this assignment is to implement and manipulate the basic operations related to Singly linked list and Doubly linked list data structures.
Assume that file1.txt and file2.txt contain unknown number of strings (text format). Write Java program that prints out all the strings that are in file1.txt but not in file2.txt. You have to store all the strings in file1.txt in a doubly linked list and all the strings in file2.txt in a singly linked list. Pseudo algorithm to do this task: