Pavitra has Published 177 Articles

Python Program for Extended Euclidean algorithms

Pavitra

Pavitra

Updated on 20-Dec-2019 06:07:43

947 Views

In this article, we will learn about the solution to the problem statement given below.Problem statement − Given two numbers we need to calculate gcd of those two numbers and display them.GCD Greatest Common Divisor of two numbers is the largest number that can divide both of them. Here we follow ... Read More

Python Program for Egg Dropping Puzzle

Pavitra

Pavitra

Updated on 20-Dec-2019 06:03:11

201 Views

In this article, we will learn about the solution to the problem statement given below.Problem statement − Suppose that we want to know which stories in a 40-story building are safe to drop the eggs from, and which of those will cause the eggs to get damaged on landing with the ... Read More

Python Program for Detect Cycle in a Directed Graph

Pavitra

Pavitra

Updated on 20-Dec-2019 06:00:01

835 Views

In this article, we will learn about the solution to the problem statement given below.Problem statement − We are given a directed graph, we need to check whether the graph contains a cycle or not. The output should be true if the given graph contains at least one cycle, otherwise ... Read More

Python Program for Cycle Sort

Pavitra

Pavitra

Updated on 20-Dec-2019 05:56:13

199 Views

In this article, we will learn about the solution to the problem statement given below.Problem statement − We are given an array, we need to sort it using the concept of cycle sort.It is an in-place algorithm and swapping takes place by the formation of cycles.Now let’s observe the solution in ... Read More

Python Program for Cutting a Rod

Pavitra

Pavitra

Updated on 20-Dec-2019 05:49:45

674 Views

In this article, we will learn about the solution to the problem statement given below.Problem statement − We are given a rod of length n and an array of prices that contains prices of all pieces of the size which are smaller than n. We need to determine the maximum value ... Read More

Python Program for Counting Sort

Pavitra

Pavitra

Updated on 20-Dec-2019 05:45:41

116 Views

In this article, we will learn about the solution to the problem statement given below.Problem statement− We are given an array, we need to sort the array using the concept of counting sort.Counting sort is a technique in which we work on keys between a specific range. It involves counting ... Read More

Python Program for Cocktail Sort

Pavitra

Pavitra

Updated on 20-Dec-2019 05:38:18

283 Views

In this article, we will learn about the solution to the problem statement given below.Problem statement − We are given a list, we need to perform a bitonic sort on the given list and display the listCocktail Sort − Here sort takes place like bubble sort where iteration takes place in both ... Read More

Python Program for BogoSort or Permutation Sort

Pavitra

Pavitra

Updated on 20-Dec-2019 05:33:17

156 Views

In this article, we will learn about the solution to the problem statement given below.Problem statement − We are given an array, we need to sort it using the concept of permutation sort.BogoSort also is known as permutation sort, is based on generating and testing paradigms.Now let’s observe the solution ... Read More

Python Program for Binary Insertion Sort

Pavitra

Pavitra

Updated on 20-Dec-2019 05:28:47

998 Views

In this article, we will learn about the solution to the problem statement given below.Problem statement − We are given an array, we need to sort it using the concept of binary insertion sort.Here as the name suggests, we use the concept of the binary search along with the insertion ... Read More

Python Program for Basic Euclidean algorithms

Pavitra

Pavitra

Updated on 20-Dec-2019 05:25:22

409 Views

In this article, we will learn about the solution to the problem statement given below.Problem statement− Given two numbers we need to calculate gcd of those two numbers and display them.GCD Greatest Common Divisor of two numbers is the largest number that can divide both of them. Here we follow ... Read More

Previous 1 ... 6 7 8 9 10 ... 18 Next
Advertisements