Posts by Akash Dileep
Author Biographical Info: Not available
In this tutorial, we are going to see some ways to find the majority element in an array in C++. A majority element in an array is that element whose frequency is greater than R.... Read More
In this tutorial, we will learn how to implement NULL Cipher using C++. In null cipher, ‘null’ stands for ‘nothing’ and ‘cipher’ stands for R.... Read More
In this tutorial, we are going to see how to frequency of each element in an Unsorted array in C++. There are many ways to solve this problem, in this tutorial we will see the brut.... Read More
In this tutorial, we are going to see how to implement a stack using a linked list in C++. A stack is an ordered collection of the items where addition of new items and the removal.... Read More
In this tutorial, we will see how to segregate even and odd nodes in a linked list in C++. Segregate even and odd nodes mean, given a linked consisting of even and odd nodes, arran.... Read More