ASSIGNMENT ON DATA STRUCTURES
TOPIC: LINKED LISTS
1. Let x and y be strings represented as single linked lists. Write a C function to determine first Character of x that does not occur in string y.
2. Write a C function for reversing circular single linked lists
3. Let A and B be two structures of type linked list. Write a function for creating new linked list C that contains elements alternately from A and B beginning with first element of A. If you run out of the elements in one of the lists then append the remaining elements of other lists to C.
4. Write a C function for concatenating two circular single linked lists.