×

SET Data Structure in C++

Generally, in our home, we store food items in a fridge or kitchen efficiently to find them easily and use them. Similarly, in programming, we need to store the data efficiently so we can access the data efficiently for this we use data structures.

Data Structures

Data structures are a way of collecting and organizing data so that we can work with it effectively. A data structure is the rendering(arrangement) of a data item from a relationship perspective to organize better and store the data item. For example, there is data where the player's name is "Mayank Agarwal," and the age is 36. "Mayank Agarwal" is a string data type, and 36 is an integer data type. This data may be organized as a record, such as a cricket record, containing the player's name and age. We can now collect cricket records and save them as a data structure in a file like a table or a database.

Data structures can be divided into two main types. One is a built-in data structure, and the other is a user-defined data structure.

Major Types Data Structure

SET Data Structure In C++

The built-in data structures are divided into four subtypes, one of which is an integer, floating-point, character, and pointer. User-defined data structures can be divided into three types: arrays, lists, and files. Lists can be divided into two types: linear lists and non-linear lists. The linear list is divided into stacks and queues. Non-linear lists are divided into trees and charts.

Built In Data Structure

SET Data Structure In C++

User Defined Data Structure

SET Data Structure In C++

SET

First, a set is an associative container that stores unique elements. In sets, duplicates are not allowed. Here elements own identify themselves means whether the elements are unique or not it is identified by their self. In a set, addition is possible, but modification is not possible. The important thing is we cannot modify the set.

SET Data Structure In C++

The set will get printed in the sorted order. We can also print in reverse order.

SET in reverse order

This is the command we need to write to print the set-in reverse order

set<int, greater<int>>s;

Types of sets

SET Data Structure In C++

Set is self-balancing BST (Binary search tree). In the sorted list, the time complexity is O(log n).

Unordered set

Implementation is different here as the elements are not sorted. The worst-case complexity is O(n).

Features of Set

A set is a data structure storing unique elements of the same type in sorted order. All values are keys. That is, access all values ??through the value itself. On the other hand, in the case of an array, each value is accessed by the position (index) in the container. Therefore, each value in the set must be unique.

Now let us look into the implementation part.

Creating an empty set In C++

#include <iostream>
 #include <set> 
using namespace std;
 int main ()
 {
 set<int> newset; 
}

Output:

Here the output is empty as we created empty list and we did not even display it. Now let us create another set which is collection of integers.

Creating a full set in C++

#include <iostream>
 #include <set> 
using namespace std;
 int main ()
 {
set<int> fullset{11,22,33,44};
set<int>::iterator it; 
for (it=fullset.begin(); it!=fullset.end(); ++it)
 cout << ' ' << *it;
 cout << '\n';


}

OUTPUT:

SET Data Structure In C++

Here output is 11,22,33 and 44 we declared these elements in the set itself.

Now let us insert elements into empty set.

Inserting Into Set

We need to use insert keyword in order to do it.

include <iostream>
#include <set> 
using namespace std;
 int main ()
 {
set<int> emptyset;


emptyset.insert(9);
emptyset.insert(19);
emptyset.insert(29); 
emptyset.insert(39);


set<int>::iterator it; 
for (it=emptyset.begin(); it!=emptyset.end(); ++it)
 cout << ' ' << *it;
 cout << '\n';


}

Here we inserted step by step 4 elements so elements are 9,19,29, 39 respectively.

Output

SET Data Structure In C++

Deleting

To delete one element from set we need to use erase command.

setname.erase()

CODE

#include <iostream>
#include <set> 
using namespace std;
 int main ()
 {
set<int> emptyset;


emptyset.insert(9);
emptyset.insert(19);
emptyset.insert(29); 
emptyset.insert(39);


set<int>::iterator it; 
for (it=emptyset.begin(); it!=emptyset.end(); ++it)
 cout << ' ' << *it;
 cout << '\n';
emptyset.erase(19);
set<int>::iterator it2; 
for (it2=emptyset.begin(); it2!=emptyset.end(); ++it2)
 cout << ' ' << *it2;
 cout << '\n';




}

Output:

SET Data Structure In C++

Deleting multiple elements

Using pointers, we can delete set of elements, we need to mention the beginning and ending.

#include <iostream>
#include <set> 
using namespace std;
 int main ()
 {
set<int> emptyset;


emptyset.insert(9);
emptyset.insert(19);
emptyset.insert(29); 
emptyset.insert(39);


set<int>::iterator it; 
for (it=emptyset.begin(); it!=emptyset.end(); ++it)
 cout << ' ' << *it;
 cout << '\n';
 //Deleting mutiple elements 
 emptyset.erase(emptyset.find(19), emptyset.end());
set<int>::iterator it2; 
for (it2=emptyset.begin(); it2!=emptyset.end(); ++it2)
 cout << ' ' << *it2;
 cout << '\n';
}

Output

SET Data Structure In C++

Displaying

In order to display elements of list in C++, we need to use these commands.

We need to use iterator to display all elements one by one.

Full Example

CODE:

#include <iostream>       
#include <set>          
using namespace std;
int main ()
{
    //Now we created an empty set name "emptyset"
    set<int> emptyset;
   
    // adding sinle elements
    emptyset.insert(9);
    emptyset.insert(29);
    emptyset.insert(39);
    emptyset.insert(49);
   
    // Now let us create a copy of set in order to undersatnd in the better way
    set<int> nineset(emptyset);
     
    // Now let us delete single element from the set 
    nineset.erase(9);
   
    // now delete elements using pointers 
    nineset.erase(nineset.find(39), nineset.end());
      // print elements
    set<int>::iterator it;
    for (it=nineset.begin(); it!=nineset.end(); ++it)
      cout << ' ' << *it;
    cout << '\n';


   
   
    // clear set using pointers
    nineset.erase(nineset.begin(), nineset.end());
   
    // clear set using clear
    nineset.clear();
}

Output

SET Data Structure In C++

This is the full code from designing emty set to filled set and deleting elements.

Applications of Set

The following are the applications of set

1. The use of the kit may not be ideal. Consider using a card if the key-value store may work better than the key alone. Another option is to use a set of pairs if you need to store the two values together as a unit.

2. When we should avoid using sets is when you access elements by position in the data structure rather than by the value itself. In this case, vectors are a more practical option.

Major Differences between ordered and unordered set

1. In an ordered or sort list, the elements will be processed in increasing order which is by default, whereas in an unordered set, there is no place for ordering.

2. Sorted set is self-balancing BST similar to red black tress, but unordered set follows the hash table.

3. The search time in the ordered list is log(n), whereas for the unordered list d set, the average time complexity is O(1), and the worst case is O(n). So when we compare in average case unordered list is a little bit better than the ordered list

4. The insertion time in the ordered set is {log(n)+Rebalance} whereas, in the unordered set, it is the same as search.

5. The deletion time in the order set is {log(n)+Rebalance} whereas, in the unordered set, it is the same as search.


Related Topics

Vector resize() in C++

Vector resize() in C++ Vectors are called dynamic arrays and can automatically adjust their size when a component is added or deleted. This container is used for storage. The function modifies the...

3 minutes read.

Hexadecimal to Decimal in C++

In computers, hexadecimal numbers are represented with base 16 and decimal numbers are represented with base 10 and values 0-9, whereas hexadecimal numbers have digits ranging from 0 to 15,...

3 minutes read.

Difference between Two Sets in C++

The distinction between the two sets is made up of the components that are present in the first set but absent from the second set. The function consistently duplicates the...

3 minutes read.

Desired Capabilities in Selenium Web Driver in C++

A class called Desired Capabilities is used to specify a set of fundamental requirements, such as browser, operating system, and version combinations.to carry out automated testing of a web application...

7 minutes read.

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.

C++ Algorithms

There are plenty of programming paradigms that are closely associated with the implementations of code and simulate them into a proper functional one. This is done with the help of...

5 minutes read.

Counting Frequencies of Array Elements in C++

We have an array of integer items with duplicate values, and our objective is to compute the frequencies of the different elements in the array. Methods: Methods that can be used to...

3 minutes read.

Nullptr in C++

What is Nullptr in C++? A null pointer value is represented by the term nullptr. Use a null pointer value to indicate that a native pointer type, inner pointer, or object...

3 minutes read.

How to call a void function in C++

Generally, any function has two types: 1. Void function: It doesn't return any value. 2. Non-void function: It returns some value. Program to call a void function in C++ #include <iostream> using namespace std;  void check() {  ...

2 minutes read.

C++ Range-based For Loop

In C++ language, the range-based for loop was added, which is far superior than the ordinary For loop. The implementation of a range-based for loop doesn't really need much code. It's a...

4 minutes read.

Learn C++ Tutorial

C++ Introduction C++ is an object-oriented programming language. It was developed by Bjarne Stroustrup at AT&T Bell Laboratories. It is superset (extension) of C programming language. Depending upon features supported by programming...

10 minutes read.

Print Table Using 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.

The Stock Span Problem

It is necessary to determine the span of a stock's price throughout all n days in order to solve the stock span problem, which involves a set of n daily...

5 minutes read.

C++ Fork

A new process known as a "child process" is created with the fork system function and runs concurrently with the process that invoked fork() (parent process). Both processes will carry...

4 minutes read.

C++ Infinite loop

The term "infinite loop" refers to a loop that does not terminate the loop according to the condition. In some cases, an infinite loop may be required in programming, or...

4 minutes read.

Pthreads or POSIX Threads in C++

The thread API for C/C++ is implemented by pthreads or POSIX threads. It enables the multithreading system, which enables parallel and distributed processing, and the creation of new concurrent process...

3 minutes read.

Sizeof() Operators in C++

sizeof() Operators in C++ The sizeof() operator in C++ defines the size of variables, constants, or data types. It is a unique operator that manipulates other operators and returns the size...

4 minutes read.

C++ program to read string using cin.getline()

C++ program to read string using cin.getline() C++ getline() is a standard library feature for reading a string or a line from an input source. A getline() function gets characters from...

3 minutes read.

C++ | C Plus Plus Data type

Data type in every language is very important. Data type means the different kinds of data that are supported by a particular programming language. A computer language’s data types specify the...

15 minutes read.

How to initialize a dynamic array in C++

Regular arrays or static arrays have a predetermined size or fixed size. Change in the size of regular arrays is not possible. The memory size for static arrays determines at compile...

4 minutes read.