Answered step by step
Verified Expert Solution
Question
1 Approved Answer
A linked list can be defined as a self-referential structure that has a pointer to a structure as a member element as shown below: struct
A linked list can be defined as a self-referential structure that has a pointer to a structure as a member element as shown below: struct node char data 40]; struct node next Here the struct template node is a linked list which has a member variable named data of char array type and a pointer to a variable named next of type node. In the attached test file named LinkedListString test.c", an empty node "head, is created. struct node* head = NULL; At the beginning of insertion of any node, the list looked like follows: head NULL After insertion of seven nodes, the linked list now looks like the following: Stuart To You need to implement the following functions: Function to count the number of elements in the linked list int listCount(struct node *head){ int count = 0; return count;} 2 pts Function to reverse the linked list void reverseList(struct node** head ref)a 6 pts *Function to delete a particular element in a linked list*/ void deleteElement(struct node **currP, char *value) *Function to delete all elements in a Linked List void listAllDelete(struct node **currP) ts 4 pts As you can see, listCount will count the number of nodes in the linked list, reverseList will reverse the nodes in the linked list, deleteElement will delete a particular node with the given value for data, and lastly, listAllDelete will delete all the nodes in a lineked list. After you complete writing the functions as mentioned above and uncomment the different function calls in main, when you run the program, it gives the following output
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started