Tutorial

Understand Doubly Linked List Data Structure

In a doubly linked list, we define a linked list in which each node keeps an explicit reference to the…

4 years ago

Understand The Singly Linked List and its Operation

A singly linked list, in its simplest form, is a collection of nodes that collectively form a linear sequence. Each…

4 years ago

Implementation of Deques in Python

A deque, also known as a double-ended queue, is an ordered collection of items similar to the queue. It has…

4 years ago

Implementation of Queue in Python

A queue is an ordered collection of items where the addition of new items happens at one end, called the…

4 years ago

Linear Regression in Machine Learning

Linear Regression in Machine Learning is one of the most fundamental algorithm. It is the door to the magical world…

4 years ago