×

Array of sets in C++

Instead of defining distinct variables for each item, arrays are used to hold numerous values in a single variable. A collection of data objects stored in a continuous way is referred to as an array. It is a collection of variables of the similar type. Because the variables are kept in continuous places, it becomes easy to retrieve them.

An array can be declared by specifying the variable type, then the array and then the square brackets that would store the number of elements in the array.

Syntax:

var_type array[no_of_elements]

Example :

String colors[3] = {“orange”, “pink”, “yellow”}

The above example shows an array of colours, having 3 colours namely orange, pink and yellow.

Sets in C++ :

A set is an associating container with distinct items. The value inserted in a set, unlike an array, cannot be changed once it is added. If we wish to change a value in the set, we may first delete it and then replace it with the new value.

Syntax :

set<data_type> variable_name 

Example :

set<float> n → A set of float values
set<int> i → A set of integer values

Array of Sets :

A two-dimensional array with a predetermined number of rows is what we mean by an array of sets. The lengths of each row might differ.

Each array index contains a set in an array of sets. Iterators allow you to access the set.

Syntax :

set<datatype> variables_name[size_of_the_arr] 

Example :

set<char> c[5] ----> An array of set of char type with size 5.

Inserting elements into an array of sets :

The insert() method is used to introduce elements into each set. The insertion method in an array of sets is demonstrated in the following example :

Example :

#include <bits/stdc++.h>
using namespace std;
#define ROW 5
#define COL 4
	
// Main Code
int main()
{
	// Declared the array of sets
	set<int> st[ROW];


	// Elements to be inserted in the set
	int nmbr = 20;


	// Inserting the elements into the sets
	for (int i = 0; i < ROW; i++) {
		// Inserting the column elements
		for (int j = 0; j < COL; j++) {
			st[i].insert(nmbr);
			nmbr += 5;
		}
	}


	// Displaying the array of sets
	for (int i = 0; i < ROW; i++) {
		cout << "Elements at the index " << i << " : ";


		// Printing the array of sets
		for (auto y : st[i])
			cout << y << " ";


		cout << endl;
	}


	return 0;
}

Output :

Elements at the index 0 : 20 25 30 35 
Elements at the index 1 : 40 45 50 55 
Elements at the index 2 : 60 65 70 75 
Elements at the index 3 : 80 85 90 95 
Elements at the index 4 : 100 105 110 115

Explanation :

In the above example, we demonstrated the approach to insert the elements to the array of sets. We created an array of sets with five rows and four columns. We gave an initial number to be inserted at the first position and then used the for loop to insert elements at the intervals of five. Finally, we printed all the elements that were present in the array of sets.

Deletion of elements in array of set :

When we say "delete an element," we mean that the element is removed from the set. The erase() function is used to delete a set element.

Example :

#include <bits/stdc++.h>
using namespace std;


// Defining the length of the array and the count of elements in 
// every set
#define ROW 5
#define COL 4


// Main Code
int main()
{
	// Declared the array of sets st
	set<int> st[ROW];
	int nmbr = 20;


	// Inserting the elements into the set
	// at every index of array
	for (int i = 0; i < ROW; i++) {


		// inserting the column elements of the array of sets
		for (int j = 0; j < COL; j++) {
			st[i].insert(nmbr);
			nmbr += 5;
		}
	}


	cout << "Elements Before removal are :"
		<< endl;


	// Displaying the array of sets
	for (int i = 0; i < ROW; i++) {
		cout << "Elements at the index "
			<< i << " : ";
		for (auto y : st[i])
			cout << y << " ";
		cout << endl;
	}


	// Erasing the element 60 from the 3rd set
	st[2].erase(60);


	// Erasing the element 45 from the 2nd set
	st[1].erase(45);


	// Displaying the new array of sets after 
// the numbers getting removed
	cout << endl
		<< "Elements after removal are:"
		<< endl;


	for (int i = 0; i < ROW; i++) {
		cout << "Elements at the index "
			<< i << " : ";


		// Printing the current array of sets
		for (auto y : st[i])
			cout << y << " ";


		cout << endl;
	}


	return 0;
}

Output :

Elements Before removal are :
Elements at the index 0 : 20 25 30 35 
Elements at the index 1 : 40 45 50 55 
Elements at the index 2 : 60 65 70 75 
Elements at the index 3 : 80 85 90 95 
Elements at the index 4 : 100 105 110 115 


Elements after removal are:
Elements at the index 0 : 20 25 30 35 
Elements at the index 1 : 40 50 55 
Elements at the index 2 : 65 70 75 
Elements at the index 3 : 80 85 90 95 
Elements at the index 4 : 100 105 110 115

Explanation :

In the above example, we demonstrated the approach to delete the elements of the array of sets. We created an array of sets with five rows and four columns. We gave an initial number to be inserted at the first position and then used the for loop to insert elements at the intervals of five. Then we used the erase() method to erase or delete the element 60 from the third set and the element 45 from the second set. Finally, we printed the new and updated array of sets without the erased elements as well as the previous array of sets with the deleted elements too as the required output.

The traversal operation in the array of sets :

We cycle through each set in an array of sets and output all of the items in that set. The set elements are traversed using iterators. The following is a programme to demonstrate traversal in an array of sets :

Example :

#include <bits/stdc++.h>
using namespace std;
// Defined the number of rows of array of sets
#define ROW 3


// Main Code
int main()
{
	// Declared the array of sets st
	set<int> st[ROW];


	// Inserting the elements into the sets
	// Inserting 20, 25, 45 and 50 into the 1st set
	st[0].insert(20);
	st[0].insert(25);
	st[0].insert(45);
	st[0].insert(50);


	// Inserting 30, 40 and 55 into the 2nd set
	st[1].insert(30);
	st[1].insert(40);
	st[1].insert(55);
	
	// Inserting 65, 75, 80 and 95 into the 3rd set
	st[2].insert(65);
	st[2].insert(75);
	st[2].insert(80);
	st[2].insert(95);


	// Traversing of sets st in order to print the
	// elements stored in it
	for (int i = 0; i < ROW; i++) {
		cout << "Elements at the index "
			<< i << ": ";


		// Traversed and printed the 
		// elements at each column,
		// the begin() method is the starting
		// iterator and the end() method is the
		// ending iterator.
		for (auto itr = st[i].begin();
			itr != st[i].end();
			itr++) {


			// (*itr) is used to get the
			// value that the iterator is pointing to.
			cout << *itr << ' ';
		}


		cout << endl;
	}


	return 0;
}

Output :

Elements at the index 0: 20 25 45 50 
Elements at the index 1: 30 40 55 
Elements at the index 2: 65 75 80 95

Explanation :

In the above example, we demonstrated how one can perform the traversal operation on an array of sets. We constructed a three-row array of sets. The set consists of four components in row one, three components in row two and four components in the row three. We used the insert() method to insert the elements into the set. Then we traversed and printed all the elements into the array of sets with the help of begin() and end() methods. We used an outer loop for the rows to traverse an array of sets. We utilised the iterators to output each set in the inner loop. Hence, got the elements in the form of array of sets in the output.

Conclusion :

In this article, we got to know what are array of sets, how we can insert elements in the array of sets, how we can delete the elements of an array of sets and also how to traverse through the elements of an array of sets.


Related Topics

Type difference of Character literals in C VS C++

Character literals in C: In C, a character literal is represented by a single character enclosed in single quotes, such as 'a' or 'b'. It is of type int. This means...

5 minutes read.

Print Table Using Do while Loop in C++

Multiplication Table In mathematics, a table is created by multiplying a certain number by all of the counting numbers, i.e., 1, 2, 3, 4, 5, 6, and so on. It is...

4 minutes read.

Different Ways to Compare Strings in C++

This section will go over the many methods for comparing strings in the C++ programming language. The string comparison checks if the first string is equal to another string. HELLO...

6 minutes read.

Name Mangling and extern in C++

Name Mangling and Function Overloading: Function overloading is a feature offered by C++. As long as each function accepts various parameters, we can use this to write many functions with the...

4 minutes read.

fread() Function in C++ Programming

C++ language is used to make high-performance applications that can work efficiently, and it is one of the world's most popular languages. It is an object-oriented and high-level programming language;...

3 minutes read.

What are local class and global class in C++

In C++, a class is a fundamental block that achieves object-oriented programming. The class holds its data members and member functions. Objects help to access the data elements and functions....

4 minutes read.

C++ Identifier

In a program, C++ identifiers relate to the names of variables, functions, arrays, and other user-defined data types that the programmer has developed. They are a prerequisite for learning any...

4 minutes read.

How to declare a 2D array dynamically in C++

In this article, we will learn how to declare the dynamic array in C++. We also learn the initialization of a 2D array using a pointer in C++. Here, we...

3 minutes read.

How to Handle Divide by Zero Exception in C++

If you are a programmer or interested in coding then it is obvious that you face some illogical test cases. Suppose, you have written one program that calculates the factorial...

6 minutes read.

C++ Object Class

C++ Object Class Overview: C++ is a high-level programming language and an object-oriented programming language. An object-oriented language always has some properties of classes and objects. In this article, we...

4 minutes read.

Decimal to Octal in C++

We must create a software that converts a decimal number into an equal octal number given a decimal number as input i.e. convert a number having a base value of...

3 minutes read.

ATM machine program in C++ using functions

Automated Teller Machines (ATMs) carry out daily financial transactions. They are straightforward and simple, allowing customers to complete self-service transactions quickly. ATMs can then be used to withdraw cash, deposit...

3 minutes read.

Pointers in C++

Pointers are a powerful feature in the C++ programming language, allowing developers to directly manipulate memory addresses and create more efficient and dynamic programs. However, pointers can also source various...

3 minutes read.

C++ File Handling

File handling is a mechanism that manipulates the data stored in files. File handling store output data from the program to external file and read file data to the program. There...

3 minutes read.

Difference between Exit and Return

Define Exit() At the point when a client needs to leave a program from this capability is utilized. A void return type capability calls all capabilities enrolled at the exit and ends...

3 minutes read.

How to concatenate two strings in C++

In the C++ programming language, the concatenation of two or even more strings is covered in this section. The term "string concatenation" refers to a collection of characters that join two...

4 minutes read.

Division in C++

C++ Division Arithmetic Operation In C++ the arithmetic operator / is used for division. This operator takes two operands and returns the result of dividing the left operand by the right...

3 minutes read.

Reserved Keywords in C++

What are reserved keywords in C++? There are a few keywords that cannot be used as identifiers as those words are reserved for some other purposes, such keywords are called reserved...

15 minutes read.

Floating Point Operations and Associativity in C, C++ and Java

In this tutorial, we are going to compare Floating-point operations and the concept of associativity. Before we apply the concept of associativity in the floating-point operations in all three programming...

3 minutes read.

Armstrong number using for loop in C++

What is For Loop? A for loop is a repetitive control structure that allows you to create a loop to execute a specific number of times efficiently. The syntax that can be...

4 minutes read.