abort() function in C++

By Punnam Chandnaik

In this tutorial, we are going to learn the abort() function using C++. Syntax of abort function in C++ void abort (void); abort() function will not close the file that is open. It.... Read More

Arithmetic expression evaluation program in C++

By Punnam Chandnaik

In this tutorial, we will learn the program for arithmetic expression evaluation in C++ with some cool and easy examples. In many situations, you might have to come up with this ty.... Read More

Implement Johnson’s algorithm for All-pairs in C++

By Punnam Chandnaik

In this tutorial, we will learn to Implement Johnson’s algorithm for All-pairs the shortest paths in C++. At final, we will implement code. Johnson’s algorithm for All-pairs th.... Read More

How to Find Sum of Nodes in a Binary Tree in C++

By Abinash Reddy

In this article, we will learn how to find the sum of nodes in a binary tree in C++. Example Input:         8 / \ 7 6 / \ / \ 5 4 3 2 Output: 35 Exaplnation: 8+7+6+5+4+3+2 = 35.... Read More

Python Program to calculate the value of nPr

By Abinash Reddy

In this article, we will learn how to calculate the value of nPr in Python. Where nPr represented n permutation r. Permutation refers to the process of organizing all the individua.... Read More

Python program to check whether given array can form Arithmetic Progression

By Abinash Reddy

In this article, we will check whether given an array can form Arithmetic Progression in Python. Example Input: arr[] = {6, 4, 8, 2, 0} Output: Yes Explanation: Rearrange the given.... Read More

Find whether n! is divisible by sum of first n natural integers or not in C++

By Vikram singhal

Given an integer value n. Product of first n natural integers or n! (factorial of n )is denoted by P  and the sum of first n consecutive natural integers is denoted by S. If S is .... Read More

Check whether two strings are isomorphic to each other in Python

By Abinash Reddy

In this article, we will learn how to check whether the given two strings are isomorphic to each other in Python. Two strings are isomorphic if there is one-to-one mapping possible.... Read More

Related Posts