Data Structure

Data Structure using C


Write c program for addition of polynomial using array

View Code

Write c program to create 2D array using dynamic memory allocation operators.

View Code

Write c program for searching an element from the given array using Linear search

View Code

Write c program for searching an element from the given array using Binary search

View Code

Write c program to sort the elements from an array using bubble sort

View Code

Write c program to sort the elements from an array using insertion sort

View Code

Write c program to sort the elements from an array using selection sort

View Code

Write c program to sort the elements from an array using merge sort

View Code

Write c program to sort the elements from an array using quick sort

View Code

Write c program to perform following functions on Singly Linked List 1) Create 2) Display
3) Insert node at in between 4) Insert first 5) Insert last 6) Count total nodes 7) Search the element 8) Delete first 9) Delete last 10) Delete from in between 11)Reverse

View Code

Write c program to perform following functions on Doubly Linked List
1) Create Doubly Linked List
2) Display Doubly Linked List

View Code

Write c program to perform following functions on Circular Doubly Linked List
1) Create Circular Doubly Linked List
2) Display Circular Doubly Linked List

View Code

Write c program for reverse the given string using stack

View Code

Write c program to perform following operations on Dynamic stack
1) Push
2) Pop
3) Display

View Code

Write c program to convert infix expression to postfix expression using stack

View Code

Write c program to perform following function on Dynamic queue
1) Insert
2) Delete
3) Display

View Code

Write c program to perform following function on Circular queue
1) Insert
2) Delete
3) Display

View Code

Write c program to perform following functions on tree
1) Create tree
2) Display tree in preorder
3) Search an element from tree

View Code

Write c program to concatenate 2 Linked List

View Code

Write C program to find intersection between 2 Linked List.

View Code

Write C program to count total nodes in Linked List.

View Code

Write C program to Count Odd , Even and Zero elements from given Singly Linked List.

View Code