Rabin Karp algorithm for pattern matching in C++

By Prayas Sambhare

In this tutorial, we are going to learn about the Rabin Karp algorithm in C++ with code implementation. Rabin Karp algorithm is an optimization of the naive algorithm which is O(n*.... Read More

How to Round Numbers in Python Language

By Animesh Jain

In this tutorial, we will understand how does rounding off works and how to implement it using Python language. In mathematics, rounding off a number means making a number easier t.... Read More

Concept Drift and Model Decay in Machine Learning

By Ujjwal Tyagi

Hello, fellow machine learning enthusiasts. Today, we are going to learn about Concept Drift and Model Decay in Machine Learning. Well if you had been working in this field then yo.... Read More

Magic Square Identification in Python

By Manan Kumar

In this tutorial, we are going to learn how to identify whether a given matrix is a magic square or not in Python. First, let’s take a look at what we mean by a magic square in t.... Read More

Check a number is Spy number or not in Python

By Nishchala Nigam

In this article, you will learn how to check whether a number is a Spy number or not in Python programming. Before we go forward, let me explain what is spy number in brief with ex.... Read More

Josephus problem and recursive solution in Java

By Shoif Md Mia

In this tutorial, we will be learning Josephus problem and its recursive solution in Java. Suppose we have p persons standing in a circle. In the beginning, there is a sword in som.... Read More

Merge two std::queue in C++

By Shoif Md Mia

Queue is a data structure that follows FIFO (first in first out) manner. In a queue, we can push values of similar (fixed for a queue) data type. If we try to pop an element then t.... Read More

Shortest path in an unweighted graph in C++

By Shoif Md Mia

In an unweighted graph from a source to the destination, we may have several paths. We have to find out the shortest path among all in C++. Let’s have an example: Our graph b.... Read More

Related Posts