Friday, 21 November 2014

Diplomo computer Lab syllabus for Data structures usinng C Practical

Data Structures Using C Practical


"L" Scheme - Subject Code : 25245

Lab Exercise:
  1. Write a program in ‘C’ to insert, delete an element from an array of elements. Also print the position of a particular element
  2. Write a program in ‘C’ to merge two sorted array elements into a single array
  3. Write a program in ‘C’ to create a two dimensional array with at least ten elements. Search for a particular element and print its position and address of the element.
  4. Write a program in ‘C’ to perform operations in stack by using array.
  5. Write a program in ‘C’ to convert an infix expression into postfix expression.
  6. Write a program in ‘C’ to evaluate a postfix expression.
  7. Write a program in ‘C’ to create a queue containing ten elements and perform delete and insert operations using array.
  8. Write a program in ‘C’ to create a singly linked list containing at least five elements. Make necessary assumptions.
  9. Write a program in ‘C’ to delete the first node that contains an integer data item of a single linked list.
  10. Write a program in ‘C’ to create and display the contents of a doubly linked list.
  11. Write a program in ‘C’ to create a binary tree.
  12. Write a program in ‘C’ for pre-order traversal of a binary tree.
  13. Write a program in ‘C’ for binary searching
  14. Write a program in ‘C’ to sort ‘N’ Numbers using Insertion sort.
  15. Write a program in ‘C’ to sort ‘N’ Numbers using bubble sort.

No comments:

Post a Comment