Skip to main content

9 docs tagged with "Data Structure"

View all tags

Array Leaders

This tutorial covers the solution to the Array Leaders problem from the GeeksforGeeks website.

Faithful Numbers

This tutorial covers the solution to the Faithful Numbers problem from the GeeksforGeeks website.

Fenwick Tree Solution

This document provides solutions to a problem using the Fenwick Tree (Binary Indexed Tree) data structure, implemented in C++, Java, and Python.

Largest Element In Array

This tutorial covers the solution to the Largest Element In Array problem from the GeeksforGeeks website, featuring implementations in C++.

Median Finder

This document provides a solution to the Median Finder problem, where you need to efficiently find the median of a stream of numbers.

Minimum number of jumps

find the minimum number of jumps required to reach the end of an array, given that each element represents the maximum length of the jump that can be made from that position.

Special Array II

This document provides solutions to this problem implemented in C++, Java, and Python.

Transpose Of Matrix

This tutorial covers the solution to the Transpose of Matrix problem from the GeeksforGeeks.