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

Pearson Correlation Test between two variables in Python

By Abuzer Malvi

One always needs to find relationships between variables before going further with Machine Learning algorithms on the dataset. The correlation or correlation coefficient captures t.... Read More

Conversion of binary fraction to decimal in Java

By Monika Maheshwari

In this section, we are going to learn how to convert Binary to Decimal in Java. So, we can divide this problem into two parts i.e one for calculation of integral part and other fo.... Read More

Traversal in a Circular Linked List in C++

By Nishant Saxena

In the following explanation, we will discuss how to traverse a Circular Linked List in C++. What we know We know how to traverse a linked list, we simply start from the head and t.... Read More

chr() in Python

By Prince John

In this tutorial, we will learn to use the chr() method which is a built-in function in Python. This function returns a character from an integer that represents the specified Unic.... Read More

How to Count pairs whose products exist in array in C++

By Deepanjan Bose

Hello everyone, in this article, we will learn how to count pairs whose products exist in an array in C++. Also, given an array and we have to count pairs. For Example: Example 1: .... Read More

Implementation of Affine Cipher in Java

By Prachi Paunikar

In this program, we are going to study the Affine Cipher Algorithm that provides us the monopolistic solution of the given input. For this purpose, we are using the Java(core) prog.... Read More

Simplify the directory path in Python

By Sameer Chachiya

In this post, we will learn how to simplify a directory path from absolute to canonical using the Python Programming language. The absolute path is used in UNIX/bash which needs to.... Read More