Skip to content

Latest commit

 

History

History
19 lines (12 loc) · 494 Bytes

File metadata and controls

19 lines (12 loc) · 494 Bytes

Data-Structure

These are 2 data structure assignments to solve some problems :

The first assignment :

  1. Apply Insertion sort on a singly linked list.
  2. Remove elements from a doubly linked list.
  3. Apply Insertion sort on an Array.

The second assignment :

  1. Implement a stack using a singly linked list.
  2. Reverse a string using stacks.
  3. Check Palindromes using 2 stacks.
  4. Implement a stack using a queue.

To see all details , you can read the 2 documents.