In a doubly linked list, we define a linked list in which each node keeps an explicit reference to the node before it and a reference to the node after it.
September 7, 2020 | Data Structure | No comments
A singly linked list, in its simplest form, is a collection of nodes that collectively form a linear sequence. Each node stores a reference to an object that is an element of the sequence, as well as a reference to the next node of the list.
August 21, 2020 | Data Structure | 1 comment
A deque, also known as a double-ended queue, is an ordered collection of items similar to the queue. It has two ends, a front, and rear, and the items remain positioned in the collection.
August 11, 2020 | Data Structure, python | No comments
A queue is an ordered collection of items where the addition of new items happens at one end, called the “rear,” and the removal of existing items occurs at the other end, commonly called the “front.”
August 10, 2020 | Data Structure, python | No comments
Linear Regression in Machine Learning is one of the most fundamental algorithm. It is the door to the magical world ahead, but before going further with algorithm. Let’s have a look at the life cycle of Machine Learning model.
August 2, 2020 | Machine Learning | No comments