Category: Data Structure

Circular Linked List
Data Structure

Circular Linked List

A circular linked list is a type of linked list where the last node of the list points back to the first node instead of having a null pointer. In other words, the next pointer of the last node in the list points to the head of the list, creating a circular structure. Circularly linked […]

Rekha Setia 
Bubble Sort in C
Data Structure

Bubble Sort in C

Bubble sorting is the most popular sorting technique because it is very simple to understand and implement. The algorithm achieves its name from the fact that with each iteration the largest value moves like a bubble to the top of the array. The bubble sort method is not efficient for large arrays. Bubble Sort Algorithm […]

Rekha Setia