Team MCK
Doubly Linked List
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
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
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...
HTML Lists
HTML lists tag allows developer to list the set of related items. There are two type of lists:
1. Ordered list
An Ordered list starts with...
HTML Styles
HTML Styles
<!DOCTYPE html>
<html>
<head>
<title>HTML styles</title>title>
</head>
<body>
<p>I am normal</p>
<p style="color:red;">I am red in color</p>
<p style="color:green;">I am green in color</p>
<p style="font-size:100px;">I am big in size</p>
</body>
</html>
HTML Background color
<!DOCTYPE html>
<html>
<head>
<title>HTML...
Loop Control Structures in C
Loop Control Structures in C
Sometimes we may come across a case where we need to perform a task multiple times. In that case we...
Conditional Flow Control Structures in C
Conditional Flow Control Structures in C
There may be a situation where we have to choose one of the alternative paths depending upon the result...
Split nodes of a linked list into two halves
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...
Count the triplets in C
Count the triplets in C
Problem statement: Given an Array of distinct integers, count all the triplets such that the sum of two elements equals...
Print Inversions in an array in C
Print Inversions in an array in C
Problem statement: Print Inversions in an array. In an array two elements a and a form an inversion...