Data Structure
Write c program for addition of polynomial using array
View CodeWrite c program to create 2D array using dynamic memory allocation operators.
View CodeWrite c program for searching an element from the given array using Linear search
View CodeWrite c program for searching an element from the given array using Binary search
View CodeWrite c program to sort the elements from an array using bubble sort
View CodeWrite c program to sort the elements from an array using insertion sort
View CodeWrite c program to sort the elements from an array using selection sort
View CodeWrite c program to sort the elements from an array using merge sort
View CodeWrite 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
Write c program to perform following functions on Doubly Linked
List
1) Create Doubly Linked List
2) Display Doubly Linked List
Write c program to perform following functions on Circular Doubly
Linked List
1) Create Circular Doubly Linked List
2) Display Circular Doubly Linked List
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
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
Write c program to perform following function on Circular queue
1) Insert
2) Delete
3) Display
Write c program to perform following functions on tree
1) Create tree
2) Display tree in preorder
3) Search an element from tree
Write c program to concatenate 2 Linked List
View CodeWrite C program to find intersection between 2 Linked List.
View CodeWrite C program to count total nodes in Linked List.
View CodeWrite C program to Count Odd , Even and Zero elements from given Singly Linked List.
View Code