Sudhir sharma has Published 1149 Articles

Previous greater element in C++

sudhir sharma

sudhir sharma

Updated on 03-Feb-2020 11:48:23

995 Views

In this problem, we are given an array. Our task is to return the greatest element that precedes the current element in the array otherwise print -1.Let’s take an example to understand the problemInput: {6, 2, 7, 1, 5, 3} Output: -1, 6, -1, 7, 7, 7To solve this problem, ... Read More

Previous number same as 1’s complement in C++

sudhir sharma

sudhir sharma

Updated on 03-Feb-2020 11:40:21

364 Views

In this problem, we are given an integer n. Our task is to check weather the preceding number is equal to 1’s complement of the number.Let’s take a few examples to understand our problemInput: 12 Output: No Explanation: (12)10 = (1100)2 Preceding number 11 = (1011)2 1’s complement of 12 ... Read More

Previous smaller integer having one less number of set bits in C++

sudhir sharma

sudhir sharma

Updated on 03-Feb-2020 11:36:41

158 Views

In this problem, we are given an integer n. Our task is to print the largest number less than n which can be formed by changing one set bit of the binary representation of the number.Let’s take an example to understand the problemInput: n = 3 Output: 2 Explanation: (3)10 ... Read More

Prim’s Algorithm (Simple Implementation for Adjacency Matrix Representation) in C++

sudhir sharma

sudhir sharma

Updated on 03-Feb-2020 11:34:13

4K+ Views

Prim’s Algorithm is a greedy method that is used to find minimum spanning tree for a given weighted undirected graph.Weighted graph is a graph that has all edges with weight values.Undirected graph is a special type of graph in which all edges are bidirectional.Minimum spanning tree is a subset that ... Read More

Primality test for the sum of digits at odd places of a number in C++

sudhir sharma

sudhir sharma

Updated on 03-Feb-2020 11:14:32

123 Views

In this problem, we are given a number N. our task is to check whether the sum of digits at odd place of the number gives a prime number or not.Primality Test is the algorithm that is used to check whether the given number is prime or not.Let’s take an ... Read More

Primary key Vs Unique key

sudhir sharma

sudhir sharma

Updated on 03-Feb-2020 11:11:25

11K+ Views

Primary KeyPrimary Key is a column that is used to uniquely identify each tuple of the table.It is used to add integrity constraints to the table. Only one primary key is allowed to be used in a table. Duplicate and NULL (empty) values are not valid in the case of ... Read More

Prime Factor in C++ Program

sudhir sharma

sudhir sharma

Updated on 03-Feb-2020 11:07:13

12K+ Views

Prime Factor is a prime number which is the factor of the given number.Factor of a number are the numbers that are multiplied to get the given number.Prime Factorisation is the process of recursively dividing the number with its prime factors to find all the prime factors of the number.Example ... Read More

Prime factors of a big number in C++

sudhir sharma

sudhir sharma

Updated on 03-Feb-2020 11:04:19

1K+ Views

In this problem, we are given an integer N

Prime factors of LCM of array elements in C++

sudhir sharma

sudhir sharma

Updated on 03-Feb-2020 11:01:51

202 Views

In this problem, we are given an array within the range 1

Prime Number of Set Bits in Binary Representation in C++

sudhir sharma

sudhir sharma

Updated on 03-Feb-2020 10:57:50

262 Views

In this problem, we are given two integers L and R. Our task to print the total numbers that have set bits counting to a prime number that is in between L to R.Let’s take an example to understand the problemInput: L = 7, R = 12 Output: 6 Explanation: ... Read More

Advertisements