Posts by Karan Mittal

Author Biographical Info: Not available

Python program to find Height of a complete binary tree (or Heap) with N nodes

By Karan Mittal

In this tutorial, we’ll be seeing how to find the height of a complete binary tree with n nodes in Python. Before seeing the code let’s first discuss what’s exact.... Read More

What is Quickhull Algorithm for Convex Hull? Explain using program in Python

By Karan Mittal

In this tutorial, we’ll be discussing the Quick hull algorithm for finding a convex hull in Python. Before starting first let’s discuss what a convex hull is: The conve.... Read More

Z algorithm in Python

By Karan Mittal

In this tutorial, we’ll be learning about the Z algorithm in Python. Before looking at the code let’s talk about what exactly the Z algorithm is about. Z algorithm help.... Read More

How to recursively copy a directory in Python

By Karan Mittal

In this tutorial, we will learn how to recursively copy a certain directory in Python. We’ll be using the shutil package in Python to achieve our goal. shutil – This is.... Read More