×

What is the Use of Segment Trees in Data Structure?

Segment trees

Segment trees are also called statistical trees in computer science. They are a type of tree data structure. Segment trees are used to store information regarding segments and intervals. The stored segments contain a particular point, and segment trees allow the querying about it. Segment trees are static structures in principle. This means that the structure of a segment tree cannot be modified once it is built. The interval tree is similar to the segment tree.

In computational geometry, segment trees are a part of tree data structure, and Bentley proposed this well-known technique in 1977. Segment trees are similar to binary trees, and the information related to the segments of linear data structures, such as arrays, linked lists, etc., are stored in the nodes of the segment trees.

The questions related to range queries, including updates, can be solved using segment trees. These segment trees can enable the execution of range queries or intervals in logarithmic time. They can also be used to process n number of such questions. A dynamic structure can also be made from this method.

We can use segment trees in many ways, including modifying elements in a given array and other multiple-range queries on arrays. For example, we can solve the following problems with the help of the versatile data structure – the segment trees:

  1. In a given array, the sum of all the elements from indices 'x' to 'y' can be found using segment trees.
  2. We can find the minimum of all elements between 'x' and 'y' using segment trees in a given array. This is popularly known as the 'Range minimum query problem'.

Segment tree definition

A segment tree is a type of binary tree. It generally stores segments and intervals, representing every interval as a node in a given segment tree.

For a given segment tree represented by 'T', let 'A' be an array and 'N' be the array 'A' size. Then:

  1. The whole array A[0: N – 1] is represented by the root of the segment tree T.
  2. Each element A[i] from 0 < i < N is represented in each leaf node of the respective segment tree T.
  3. The union of elementary intervals A[i : j] where 0 <= i < j < N, are represented in the internal nodes of the T (Segment tree).

The whole array A[0: N – 1] is represented by the root of the segment tree T. Then, the root node is broken down into two equal segments or intervals. Both the child nodes of the root node of the segment tree T are represented by the following formulae: (A[0 : ((N – 1)/2)] and A[(((N – 1)/2) + 1) : (N – 1)]). Further, each node is divided into two equal child nodes until the leaf nodes are reached. Therefore, the segment tree's height is given as (log2N). All the N elements of array A are represented in the N leaf nodes of the segment tree. The count of the number of internal nodes is given by (N – 1). Hence, the total number of nodes in a segment tree is (2 * (N – 1)).

Segment trees are static structures in principle, meaning that a segment tree's structure cannot be modified once built. Though the structure of a segment tree cannot be changed, we can alter or update the values in the nodes of the segment tree. The following operations can be performed to alter or update the values in the nodes of the segment tree:

Update: Using this operation, the elements in array A are updated, and the respective change is reflected in the segment tree T.

Query: Using this operation, a segment or interval can be queried, and the answer to the given problem is returned. These questions may include finding either the maximum or minimum or summation in a chosen segment of the segment tree T.

Implementation of segment trees

We can represent a segment tree using a simple linear array as a binary tree. We should first figure out what a node in the segment tree should store before actually building the segment tree. For example, if we need to find the sum of all the elements from indices 'x' to 'y' in a given array, then we can choose to store the sum of the child nodes in each segment tree node (excluding the leaf nodes).

We can use the bottom-up approach or recursion to build a segment tree. As the name suggests (bottom-up approach), we start from the bottom, i.e., the leaf nodes of the segment tree, and go up until we reach the top end, i.e., the root node of the segment tree. In this process, we update the respective changes to the nodes that fall in the paths of the leaf nodes and the root node.

A single element is represented in each leaf node. In each step of this bottom-up approach, the data present in two selected child nodes is computed according to the problem to be solved and are calculated to form the internal parent node. This means that each internal parent node represents the combination of both child nodes. This combination may differ in different segment trees based on the various questions. Hence, the bottom-up approach ends at the root node, representing the whole array.

Using the Update(), the elements in the array A are updated, and the respective change is reflected in the segment tree T. First, the leaf node that needs to be operated by the update operation is found. It is updated, and then the bottom-up approach is applied, updating all the nodes that fall in the path of the selected leaf node and root node (including the root node).

Using the Query() operation, the elements in the array A are updated, and the respective change is reflected in the segment tree T. First, the leaf node that needs to be operated by the query operation is found. It is computed based on the query asked, and then the bottom-up approach is applied, calculating the question on all the nodes that fall in the path of the selected leaf node and root node (including the root node).

What is the use of segment trees in data structures?

Segment trees can be used in many ways. There are many applications of segment trees in data structures, and the applications of segment trees can be mainly concentrated on the applications and possibilities of arrays. We have listed some of the applications of segment trees:

If we provide a list of rectangles in a plane, then the segment trees can proficiently list all the pairs of rectangles that intersect. Segment trees were mainly used for this purpose in their early stages.

  • We use segment trees in computational geometry.
  • Geographic information systems use segment trees.
  • Range management queries (RMQ) in static and dynamic systems use segment trees.
  • Segment trees can be used to store segments arbitrarily.
  • In computational geometry, the information related to the segments of linear data structures, such as arrays, linked lists, etc., are stored in the nodes of the segment trees.

The questions related to range queries, including updates, can be solved using segment trees. These segment trees can enable the execution of range queries or intervals in logarithmic time. They can also be used to process n number of such questions. A dynamic structure can also be made from this method.

We can use segment trees in many ways, including modifying elements in a given array and other multiple-range queries on arrays. For example, we can solve the following problems with the help of the versatile data structure – the segment trees:

  1. In a given array, the sum of all the elements from indices 'x' to 'y' can be found using segment trees.
  2. We can find the minimum of all elements between 'x' and 'y' using segment trees in a given array. This is popularly known as the 'Range minimum query problem'.

Related Topics

Optimal binary search tree in DSA

Implementation // A simple way of the recursive implementation of the optimal search that we will perform on the binary tree.   #include <bits/stdc++.h> using namespace std; // we have to create a basic utility...

8 minutes read.

Introduction to Arrays

What exactly is an array? A group of related data pieces stored in contiguous memory regions is referred to as an array. It is the most basic data structure in which...

5 minutes read.

Data Structures Algorithms

What is an Algorithm? An algorithm is a sequence of steps used to complete a job or get a desired result. It is similar to programming building elements that let cell...

4 minutes read.

Convert Binary Tree into a Threaded Binary Tree

Implementation /*Writing a C++ program that will help us change the binary tree into a threaded binary tree and help us transform. */ #include <bits/stdc++.h> using namespace std; /*Creating the structure of a node...

11 minutes read.

Binary Tree Inorder Traversal

The binary tree is a type of tree in which each and every node has atleast two children except the leaf nodes. We have various operations in the binary tree,...

4 minutes read.

Insertion Sort in Data Structures

Insertion Sort in C++ Insertion sort is a sorting algorithm that, in each iteration, installs an unsorted element in its proper position Insertion sort operates in a similar way to how we...

3 minutes read.

Quick Sort

Quicksort is a sorting algorithm that uses a divide-and-conquer strategy. A pivot element is used to divide an array into subarrays (element selected from the array).  The pivot element should be...

4 minutes read.

Common Operations on various Data Structures

Data structures are ways to organise data in computer memory for quick and effective use. The storage of data uses a variety of data-structures. It is also possible to define...

7 minutes read.

Delete N nodes after M nodes of a linked list

Delete N nodes after M nodes of a linked list In this problem, we have given a linked list and two integers M and N. We need to traverse the linked...

3 minutes read.

Recursion in Fibonacci

Fibonacci heap is considered to be a particular execution of the heap data structure that ultimately helps in making use of not just any number but the Fibonacci numbers. It...

3 minutes read.

Program to calculate the area of the circumcircle of an equilateral triangle

You have given one value which represents the side of the equilateral triangle. You have to find out the area of the circumcircle. Let’s take an example - For the above...

3 minutes read.

Bubble Sort vs Merge Sort

In this article, we are going to compare two sorting techniques, Bubble sort and Merge Sort. In starting, we will first discuss the idea of sorting an array using bubble...

7 minutes read.

Depth of binary tree

We all know that a binary tree is a kind of tree that helps us maintain the order and balance of the tree. It is a type of tree in...

4 minutes read.

Breadth First Search

Breadth First Search Breadth first search is a graph traversing algorithm. In this, we start traversing from the source node or any selected node and traverse the graph layer by layer....

6 minutes read.

Spanning Tree

Spanning Tree: The spanning tree is a subset of the graph. It is a non-cyclic graph. If any node in the spanning tree is truncated, the entire graph fails. There are...

10 minutes read.

What is the difference between DFS and BFS?

What is BFS? BFS is generally known as the low level traversal. As we already know that it stands for breadth first search and is mainly used in the queue data...

4 minutes read.

Length of longest palindrome in a linked list using O(1) extra space

Length of longest palindrome in a linked list using O(1) extra space In this problem, we need to find the length of the longest palindrome list that is present in given...

2 minutes read.

Find all possible words from board

We have been given a dictionary of words and a board of characters from which we can form strings. Now, we have to check if the string is present in...

5 minutes read.

Sorting Algorithms in Data Structures

A sorting algorithm is used to organize the elements of an array or list. Sorting an array, for example. Unsorted array 572941 Sorted array 124579 We're sorting the array in ascending order right now. This procedure...

4 minutes read.

Data Structures Tutorial

The data structure is a way of storing and organizing data in a computer system. So that we can use the data quickly, which means the information is stored and...

7 minutes read.