0% found this document useful (0 votes)
27 views1 page

Submission Deadline: 22/10/2019 Before 4.00PM: Assignment - 2

This document outlines an assignment for a data structures course using C programming. It provides 10 programming tasks involving implementing common operations on different linked list data structures like queues, stacks, and singly and doubly linked lists. The tasks include adding and removing nodes, reversing lists, counting nodes, and searching lists. Students must complete all 10 tasks and submit their code before the deadline of October 22, 2019 at 4:00PM.

Uploaded by

Phaalguni
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
27 views1 page

Submission Deadline: 22/10/2019 Before 4.00PM: Assignment - 2

This document outlines an assignment for a data structures course using C programming. It provides 10 programming tasks involving implementing common operations on different linked list data structures like queues, stacks, and singly and doubly linked lists. The tasks include adding and removing nodes, reversing lists, counting nodes, and searching lists. Students must complete all 10 tasks and submit their code before the deadline of October 22, 2019 at 4:00PM.

Uploaded by

Phaalguni
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

DATA STRUCTURE USING C ASSIGNMENT-2

Assignment -2
Submission Deadline: 22/10/2019 before 4.00PM
1. Write a C program for Queue implementation using
linked list, enqueue and dequeue.
2. Write a C program for Stack implementation using linked
list, push, pop and display.
3. Write a C program to insert a node at middle of a Singly
Linked List.
4. Write a C program to delete a node at middle of a Singly
Linked List.
5. Write a C program to insert a node at middle of a doubly
Linked List.
6. Write a C program to delete a node at middle of a doubly
Linked List.
7. Write a C program to swap two nodes in a linked list.
8. Write a C program to reverse a Singly Linked List.
9. Write a C program to count total number of nodes in
Singly Linked List.
10. Write a C program to search an element in linked list.

************************************************

E &IE
RV College of Engineering

You might also like