资 源 简 介
Log file could not be prepared because I had been updating my files on my local sever by mistake.
Kindly read the description for each file to see the date of commit.
----Project Summary-----
Implementing the following operations on linked list data structure:
- Append node at end
- Insert a node after a given node
- Extend a list by linking it to another list
- Delete a given node
- Pop the first node in the linked list
- Count the number of occurences
- Sort a Linked list
- Reverse a linked list
Implementing the following operations on arrays:
- Append an item to the array of structure
- Extend an array of structure by appending all items of another array into the previous one
- Insert a structure item at a given position
- Delete an item
- Pop and remove the first element of the array
- Count the number of items
- Sort an array of structures
- Reverse an array of structures