These are 2 data structure assignments to solve some problems :
The first assignment :
- Apply Insertion sort on a singly linked list.
- Remove elements from a doubly linked list.
- Apply Insertion sort on an Array.
The second assignment :
- Implement a stack using a singly linked list.
- Reverse a string using stacks.
- Check Palindromes using 2 stacks.
- Implement a stack using a queue.
To see all details , you can read the 2 documents.