Posts by Amit Razdan

Author Biographical Info: I am a B.TECH CSE third-year student.

How to perform Count and Toggle queries on Binary array in C++

By Amit Razdan

In this post, we will learn how to perform toggle as well as count operations on a binary array in C++.  Count and Toggle queries on Binary array C++ The binary array is an array .... Read More

How to implement Linked List in C++

By Amit Razdan

In this post, I am going to discuss the implementation of the linked list in C++ programming language. There are many types of data structures one of the most important of those is.... Read More

How to pass an array by reference in C++

By Amit Razdan

In this post, we will understand about passing an array by reference in the C++ programming language. We will see the example code also for this task. Passing an array by reference.... Read More

How to implement stack using using linked list in C++

By Amit Razdan

In this tutorial, we will learn how to implement a stack using a linked list in the C++ programming language. The stack is one of the most important data structure that is used in .... Read More

How to implement queue using Linked list in C++

By Amit Razdan

In this tutorial, we will learn how to implement a Queue using a linked list in the C++ programming language. queue implementation using linked list in C++ A queue is a form of a d.... Read More

Stack implementation using Array in C++

By Amit Razdan

In this post, I will provide information about how to implement a stack using an array using a C++ programming language. There are various types of data structures out of which sta.... Read More

How to simplify the directory path in C++

By Amit Razdan

In this post, we will learn about how to simplify the directory path using the C++ programming language. This post will help you to understand the process of simplifying the direct.... Read More

Related Posts