Rudradev Das has Published 80 Articles

Longest Subarray with GCD Greater than 1

Rudradev Das

Rudradev Das

Updated on 06-Apr-2023 15:44:17

278 Views

An array is a collection of similar data sets which stored at adjacent memory locations in a continuous manner. It makes the process easier to evaluate the particular position of each and every element by defining an offset value to the particular base value of a database. The base value ... Read More

Java Program to Find the GCDs of given index ranges in an array

Rudradev Das

Rudradev Das

Updated on 06-Apr-2023 15:22:34

167 Views

In the field of data structure, a range query is a pre-processing method to operate on some input data in an efficient manner. A range query is responsible to answer any query of the particular input on any data subset. If we want to copy some data columns from a ... Read More

C++ Program to Find the GCDs of given index ranges in an array

Rudradev Das

Rudradev Das

Updated on 06-Apr-2023 15:19:05

239 Views

In the field of data structure, a range query is a pre-processing method to operate on some input data in an efficient manner. A range query is responsible to answer any query of the particular input on any data subset. If we want to copy some data columns from a ... Read More

C++ Program to count of array elements greater than all elements on its left and at least K elements on its right

Rudradev Das

Rudradev Das

Updated on 06-Apr-2023 15:05:31

427 Views

A string is an object, which represents a sequence of data characters. The strings are the data container which always represented as a text format. It also used to concept, compare, split, join, replace, trim, length, intern, equals, comparison, substring operation. K largest(or smallest) elements in an array using ... Read More

Applications, Advantages and Disadvantages of Deque

Rudradev Das

Rudradev Das

Updated on 06-Apr-2023 10:04:54

1K+ Views

Deque or double ended queue is a sequential linear collection data queue that provides the function like a double-ended queue. In this data structure the method does not follow the First In First Out (FIFO) rule for data treatment. This data structure is also known as double-ended queue because the ... Read More

Maximize value of coins from adjacent row and columns cannot to be collected

Rudradev Das

Rudradev Das

Updated on 05-Apr-2023 18:11:34

137 Views

Dynamic programming is an optimization algorithmic technique to solve the particular problems by splitting them into some simple sub problems. It is a procedure by which we can combine the quality, condition, or fact of a complete search for a greedy algorithm being exact and accurate. But this method is ... Read More

Reverse each word in a linked list Node

Rudradev Das

Rudradev Das

Updated on 05-Apr-2023 17:58:17

193 Views

A linked list is a chain alike linear data structure, where the elements are not saved at memory in an adjacent manner, unlike array. In a particular linked list, the elements are linked with the next element by a pointer. In simple words; a linked list is a series of ... Read More

Minimum Changes to string to make all substrings distinct

Rudradev Das

Rudradev Das

Updated on 05-Apr-2023 17:54:16

544 Views

A string is a particular object, which represents a sequence and flow of data characters. The strings are the data container which always represented as a text format. It also used to concept, compare, split, join, replace, trim, length, intern, equals, comparison, substring operation. A substring() is a data ... Read More

Function to copy string (Iterative and Recursive)

Rudradev Das

Rudradev Das

Updated on 05-Apr-2023 17:52:51

333 Views

In a C++ environment, iteration statement is a compound or cause statement which can be executed zero or more than one at a time. This process is subjected to a loop termination process. The statement executes in a particular order when there is a presence of break statement or the ... Read More

Transform a string such that it has abcd..z as a subsequence

Rudradev Das

Rudradev Das

Updated on 05-Apr-2023 17:51:10

117 Views

Transforming a string aka string transformation is an operation in C++ by which the result stores in an output array after the execution of the whole process. In C++ there is a function called "transform()", present in the directory of the C++ environment by which we can transform a string ... Read More

Advertisements