Posts by Akash Dileep

Author Biographical Info: Not available

How to check for Majority Element in an array in C++

By Akash Dileep

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

Implementation of Null Cipher in C++

By Akash Dileep

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

Find frequency of each element in an Array in C++

By Akash Dileep

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

Stack implementation using Linked List in C++

By Akash Dileep

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

Segregate even and odd nodes in a Linked List C++

By Akash Dileep

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