ASSIGNMENT QUESTIONS ON DS

DAY-2

STACK:

  1. Infix to prefix implementation in c : with Pointer
  2. Infix to prefix implementation in c : without Pointer
  3. Postfix to Infix implementation in c

QUEUE:

  1. C Program for String insertion and deletion over queue
  2. C Program for Insertion and deletion over multiple queue
  3. C Program for Insertion and deletion over circular queue

DAY-3

Linked list :

  1. Count the number of nodes in a link list using C
  2. C program for Searching in Linked List
  3. C program for Sorting in Linked List

DAY-4

Doubly linked list:

  1.  Program To Sort A Doubly Linked List (in C)
  2. Program to create Doubly Linked List in C

DAY-5

SORTING:

  1. C Program to Sort the N Names in an Alphabetical Order
  2. C Program to Implement Selection Sort Recursively
  3. C Program to Perform Quick Sort on a set of Entries from a File using Recursion

DAY-6

SEARCHING:

  1. Searching using pointers in C
  2. C Program to Perform Binary Search using Recursion

DAY-7

TREE:

  1. WAP To Find the Smallest and Largest Elements in the Binary Search Tree
  2. WAP to Implement Binary Tree using Linked List
  3. WAP for Depth First Binary Tree Search using Recursion