Found 7346 Articles for C++

Count of K length substrings containing exactly X vowels

Shubham Vora
Updated on 17-Aug-2023 17:44:40

43 Views

In this problem, we need to find a total number of substrings of length K containing exactly K vowels. We will see two different approaches to solving the problem. We can use a naïve approach that checks the number of vowels in each substring of length K. Also, we can use the sliding window approach to solve the problem. Problem statement – We have given a string str of length N containing lowercase and uppercase alphabetical characters. We need to count the total number of substrings of length K which contains exactly X vowels. Sample examples Input– str = ... Read More

Check if substring S1 appear after any occurrence of substring S2 in given sentence

Shubham Vora
Updated on 17-Aug-2023 17:42:43

187 Views

In this problem, we need th check whether the substring S1 appears after any occurrence of the substring S2 in the given string S. We can compare the starting index of S1 and S2 in the string S to solve the problem. Problem statement – We have given three substrings named S, S1, and S2. The string S always contains S1 as a substring. We need to check whether the substring S1 appears after any occurrence of the substring S2 in the given string S. Sample examples Input – S = "abxtutorialspointwelcomepoint", S1 = "welcome", S2 = "point"; ... Read More

Check if any permutation of a given string is lexicographically larger than the other given string

Shubham Vora
Updated on 17-Aug-2023 17:39:46

71 Views

We have given two strings and need to check whether the given string's permutations exist such that one permutation can have a larger character than another permutation at the ith index. We can solve the problem by sorting the string and comparing each character of the string one by one. Also, we can solve the problem using the frequency of characters of both strings. Problem statement – We have given a string str1 and str2 of length N. We need to check whether any permutations of both strings exist such that the permutation of one string is lexicographically larger than ... Read More

C++ Program for Longest subsequence of a number having same left and right rotation

Shubham Vora
Updated on 17-Aug-2023 17:37:18

58 Views

In this problem, we need to find the maximum length of the sub sequence with the same left and right rotations. The left rotation means moving all characters of the string in the left direction and the first character at the end. The right rotation means moving all string characters in the right direction and the last character at the start. Problem statement – We have given string str containing numeric digits and need to find the sub sequence of maximum length with the same left and right rotations. Sample examples Input – str = "323232", Output – 6 Explanation– ... Read More

Average value of set bit count in given Binary string after performing all possible choices of K operations

Shubham Vora
Updated on 17-Aug-2023 17:34:43

54 Views

In this problem, we need to find the average value of the count of set bits after performing K operations of all choices on the given string. There can be a brute force approach to solve the problem, but we will use the probability principles to overcome the time complexity of the brute force approach. Problem statement – We have given an integer N, array arr[] containing K positive integers, and a binary string of length N containing only set bits. We need to find the average value of the count of set bits after performing all possible choices ... Read More

Count of K length substring containing at most X distinct vowels

Shubham Vora
Updated on 17-Aug-2023 17:31:46

78 Views

In this problem, we need to find the total number of sub strings of length K containing at most X distinct vowels. We can solve the problem in two different ways. The first way is to get all sub strings and count distinct vowels in each sub string of length K. The second way is to use a map data structure and track the number of distinct vowels in the particular sub string. Problem statement– We have given string str of length N. The string contains only alphabetical characters. Also, we have given K and X positive integers. We need ... Read More

Check if the Sum of Digits of a Number N Divides It

Tapas Kumar Ghosh
Updated on 17-Aug-2023 18:19:17

111 Views

The N number is the special number of integer type that calculates the individual digit of sum. So, this sum will be divisible by its own number. Let’s take an example of this. The given integer number, N = 36 The sum of each digit, 3 + 6 = 9 Therefore, 36 is successfully divisible by 9 and it verifies for N divides it. Algorithm The following steps are- Step 1: We will start the program by mentioning the header file iostream. Step 2: Common Matches:- Then used the function definition digit_sum() that accepts the parameter a variable n ... Read More

How do I link a C++ program with an HTML page?

Ayush Singh
Updated on 17-Aug-2023 11:03:14

4K+ Views

WebAssembly (Wasm), a parallel guidance design that empowers superior execution dialects like C++ to execute in internet browsers, is utilized to connect a C++ application with a HTML page. Engineers can make online applications with C++ usefulness because of WebAssembly, which empowers consistent coordination of C++ code with HTML and JavaScript. Here is a bit by bit instructional exercise for using WebAssembly to interface a C++ program with a HTML page. Install the Required Tools Before you begin, you should set up the accompanying equipment − If you don't already have a C++ compiler, consider installing GCC (GNU Compiler ... Read More

Is there any equivalent to typedef of C/C++ in Java?

Shriansh Kumar
Updated on 17-Aug-2023 09:57:11

333 Views

We can find many similarities between Java and C/C++ programming languages in terms of syntaxes and features. But, there are several functionalities that have been omitted from Java like 'typedef'. If someone coming from a C/C++ background, must have heard the 'typedef' keyword, and often wonders, is there any equivalent to typedef in Java? In simple words, Java does not provide a direct equivalent to typedef. The creators of Java replaced this feature with classes. In fact, a class can do even more than a typedef can do. Replacement to typedef of C/C++ in Java? Before exploring the ... Read More

Check Duplicate in a Stream of Strings

Tapas Kumar Ghosh
Updated on 16-Aug-2023 15:53:12

260 Views

The stream of strings is a sequential flow of given data where an individual element of the stream represents a string. The stream allows a large process of string data In C++, we have some STL(Standard template library) based functions such as count() and insert() to Check duplicate in a stream of strings. Using Standard Template Library The program uses C++ STL to set the header file unordered representing the unique key element and helps to solve the duplicates in a stream of strings. Syntax The following syntax is used in the examples- static unordered_set unq_string; The ... Read More

Advertisements