Posts by Arijit Nayak

Author Biographical Info: Not available

Insert a node at the end of a Singly Linked List Using C++

By Arijit Nayak

We have already learned about how to insert the element at the beginning of the linked list in C++. Now it’s time to explain how to insert an element at the end of a list. We.... Read More

Insert a Node at the beginning of a Singly Linked List Using C++

By Arijit Nayak

Let’s start with some basic concepts behind the linked list. Why it is so popular, why it’s used in a huge range in industries? First, we will look into the fact why th.... Read More

Travelling Salesperson Problem using Dynamic Approach in C++

By Arijit Nayak

In this tutorial, we will learn about the TSP(Travelling Salesperson problem) problem in C++. In this tutorial, we will learn about what is TSP. Next, what are the ways there to so.... Read More

Virtual Function in C++

By Arijit Nayak

In this tutorial, we will learn Virtual Function in C++. Virtual programming is an innovation to the object-oriented programming language. Why so? And what are the advantages and n.... Read More

Custom User Defined Exceptions in C++

By Arijit Nayak

Exception handling is a very important concept in OOPS. What is this exception handling and how to handle the exception in C++? In this tutorial, we will get to know about the brie.... Read More