Thursday, April 18, 2024
Home Tags DS

Tag: DS

Queue Implementation using Array

0
Queue Implementation using Array // C Program to Implement a Queue using an Array #include <stdio.h> #include <stdlib.h> #define MAX 20 void insert(); void delete (); void display(); int queue_array; int rear =...

Doubly Linked List

0
Doubly Linked List Problem Statement: Write a Menu driven program for Doubly Linked List with following functionality- i. Insert node at Beginning ii. Insert node at End iii....

Move last element to front of a given Linked List

0
Move last element to front of a given Linked List Problem statement: Given a Singly linked list, move the last element to the front of...

Circular Linked List

0
In Circular Linked list any node can be the starting point. The last node points to the head node. It can be used in understanding...

Split nodes of a linked list into two halves

0
Split nodes of a linked list into two halves Problem statement: Given a linked list split it into two halves, front and back. If the...

Latest Post

Number Series Set II

Average Set I

Simple Interest set 1