Rudradev Das has Published 79 Articles

PHP program to Count Inversions of size three in a given array

Rudradev Das

Rudradev Das

Updated on 06-Apr-2023 18:01:41

135 Views

Inversion count is a step counting method by which we can calculate the number of sorting steps taken by a particular array. It is also capable to count the operation time span for an array. But, if we want to sort an array in a reverse manner, the count will ... Read More

Java program to find array sum using bitwise OR after splitting given array in two halves after K circular shifts

Rudradev Das

Rudradev Das

Updated on 06-Apr-2023 18:00:21

143 Views

Array is a set of a single non primitive similar data types (values or variables) that stores the elements in a memory with a fixed number of values. After creating an array with certain elements, the length of this data set became fixed. Here non primitive means, these data types ... Read More

Longest Subarray with GCD Greater than 1

Rudradev Das

Rudradev Das

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

330 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

177 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

272 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

449 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

2K+ 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

145 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

211 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

652 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

Advertisements