Prateek Jangid has Published 190 Articles

Remove Last Node of the Linked List using C++

Prateek Jangid

Prateek Jangid

Updated on 29-Nov-2021 09:36:35

146 Views

We are provided with a singly linked list, and we are tasked to remove the last node from that list. In this problem, we are simply going to traverse through the given list and simply remove the last node.Approach to find The SolutionIn this approach, we go through the given ... Read More

Remove First Node of the Linked List using C++

Prateek Jangid

Prateek Jangid

Updated on 26-Nov-2021 11:18:33

161 Views

Given a linked list, we need to remove its first element and return the pointer to the head of the new list.Input : 1 -> 2 -> 3 -> 4 -> 5 -> NULL Output : 2 -> 3 -> 4 -> 5 -> NULL Input : 2 -> ... Read More

Remove Every K-th Node Of The Linked List

Prateek Jangid

Prateek Jangid

Updated on 26-Nov-2021 11:12:25

394 Views

In this article, we will explain the way to remove every k-th node of the linked list. We must delete every node that sits on the multiple of k, i.e., we have to delete the node on positions k, 2*k, 3*k, etc.Input : 112->231->31->41->54->63->71->85    k = 3 Output : ... Read More

Remove a Given Word from a String using C++

Prateek Jangid

Prateek Jangid

Updated on 26-Nov-2021 10:46:47

3K+ Views

In this article, we’ll be solving the problem of removing a given word from a given string. For example −Input : str = “remove a given word ”, word = “ remove ” Output : “ a given word ” Input : str = “ god is everywhere ”, ... Read More

Rearrange an Array to Maximize i*arr[i] using C++

Prateek Jangid

Prateek Jangid

Updated on 26-Nov-2021 10:41:11

830 Views

In this article, we will discuss the problem of rearranging a given array of n numbers. Basically, we have to select elements from the array. For selecting each element, we get some points that will be evaluated by the value of the current element * a number of elements selected ... Read More

Rearrange An Array In Order – Smallest, Largest, 2nd Smallest, 2nd Largest,. Using C++

Prateek Jangid

Prateek Jangid

Updated on 26-Nov-2021 10:32:44

546 Views

We are given an array; we need to arrange this array in an order that the first element should be a minimum element, the second element should be a maximum element, the third element should be 2nd minimum element, the fourth element should be the 2nd maximum element and so ... Read More

Rearrange an Array in Maximum Minimum Form using C++

Prateek Jangid

Prateek Jangid

Updated on 26-Nov-2021 10:26:52

200 Views

We are given a sorted array. We need to arrange this array in maximum, minimum form, i.e., the first element is the maximum element, the second element is the minimum element, the third element is 2nd maximum element, the fourth element is 2nd minimum element, and so on, for example ... Read More

Rank of All Elements in an Array using C++

Prateek Jangid

Prateek Jangid

Updated on 26-Nov-2021 10:20:02

964 Views

In the given problem, we need to rank all the given elements of an array, with the smallest number having the smallest rank and the largest having the largest rank. We also need to change the ranks of a number depending on their frequencies, for examples −Input : 20 30 ... Read More

Range Sum Queries Without Updates using C++

Prateek Jangid

Prateek Jangid

Updated on 26-Nov-2021 10:09:29

318 Views

In this article, we will give an array of size n, which will be an integer. Then, we will compute the sum of elements from index L to index R and execute the queries multiple times, or we need to calculate the sum of the given range from [L, R]. ... Read More

Queries to Print All the Divisors of n using C++

Prateek Jangid

Prateek Jangid

Updated on 26-Nov-2021 10:05:03

358 Views

In the given problem, we are required to print all the divisors of a given integer n.Input: 15 Output: 1 3 5 15 Explanation Divisors of 15 are: 1, 3, 5, 15 Input: 30 Output: 1 2 3 5 15 30In the given problem, we can apply the approach ... Read More

Previous 1 ... 7 8 9 10 11 ... 19 Next
Advertisements