Rohit Gawanderohit253.hashnode.dev路Nov 9, 2024Chapter 47 -Segment Trees: The Final Chapter of My DSA JourneyHey everyone! 馃帀 I鈥檓 thrilled to share that this is the last chapter in my DSA with Java series! It鈥檚 been an incredible journey, and I鈥檓 excited to wrap it up with an important topic: Segment Trees. Segment trees are a powerful data structure, used ...Discusssoftware development
Anower Hossainanower77.hashnode.dev路Jul 14, 2024Segment Tree-1Segment Tree Basic Node Divide With Segment Tree Node Numbering (Segment Tree) // build (node, begin, end) build (1, 1, N) { L = 2xN, R = (2xN) + 1 // Node Number Calculate mid = (begin + end) / 2 left = (L, begin, mid) left = (R, ...Discuss路149 readssegment-tree
Nitesh Kushwahaniteshim111.hashnode.dev路Mar 3, 2024Secret Data Structures of C++: PBDS LibraryThe PBDS (Policy-Based Data Structures) library, also known as the GNU Policy-Based Data Structures (PBDS) library, is an extension to the C++ Standard Template Library (STL) provided by GNU. It offers additional data structures that are not availabl...Discuss路3 likes路143 readsordered_set
Gary Vladimir N煤帽ez L贸pezblog.garybricks.com路Sep 19, 2022Segment Tree Introduction In C++Introduction Welcome Back! In this post, we will take a beginner's dive into segment trees in c++, we will look at what are they. what are they for? and we will solve some basic competitive programming problems together. Before we begin, I highly sug...Discuss路5 likes路674 readsdata structures
Mayank Rajalice-bob.hashnode.dev路Sep 7, 2022The lazy algorithm vs BITThis article was first published in the author's personal blog: https://www.alice-bob.tech/the-root-n-trick/ Back in my days of competitive coding - I realized that there are two kinds of competitive coders - one who know binary indexed trees (BIT) ...Discussalgorithms