search
HomeBackend DevelopmentC++C++ program to convert array to set (hash set)
C++ program to convert array to set (hash set)Sep 16, 2023 am 09:01 AM
arraygatherConvert

C++ program to convert array to set (hash set)

Array is a data structure available in C that holds a sequential collection of elements of the same type. The size of the array is fixed but can be expanded or reduced as needed. It is important to think of an array as a collection of variables of the same type, even if it is used to store a collection of data. A set (or in this case, an unordered set) is a container that stores elements of a specific data type in an arbitrary order. A hash table is used to implement unordered_set, where the keys are hashed into a hash table index to help ensure that insertions are always random.

Conversion from an array to an unordered set can be accomplished using various methods that we discuss further.

Insert array elements into the collection one by one

The easiest way to convert an array into an unordered set is to use a for loop and insert each array element individually into the unordered set. Next we look at the syntax and algorithm.

grammar

int ip[] = <integer array>;
   unordered_set<int> op;
   for( int i : ip) {
      op.insert(i);
}

algorithm

  • Get input in integer array ip.
  • Define an unordered_set operation.
  • For each element i in the array ip, execute -
    • Insert IP into op.
  • Display the content of op.

Example

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

template <size_t N> unordered_set<int> solve( int (&ip)[N] )
{
   //an unorderd set is declared
   unordered_set<int> op;
   
   //each element is inserted using insert function
   for(int i : ip) {
      op.insert(i);
   }
   return op;
}
int main()
{
   int ip[] = {50, 80, 90, 40, 30};
   unordered_set<int> op = solve(ip);

   //display the input
   cout<< "The input array is: ";
   for(int i : ip) {
      cout<< i << " ";
   }

   //display the output
   cout<< "\nThe output set is: ";
   for(int j : op) {
      cout<< j << " ";
   }
   return 0;
}

Output

The input array is: 50 80 90 40 30 
The output set is: 30 40 90 50 80

We declare an integer array ip and iterate over all elements in the array. We declare the output set as op and insert each element into the unordered set using the insertion function available in the container. The result we can see is an unordered set of values ​​that are also present in the array.

Construct a collection using the range constructor

You can also create unordered_set using its range constructor. The range constructor takes two inputs; the starting pointer of the input array and the size of the input array plus the starting pointer.

grammar

int ip[] = ;
int n = sizeof(ip) / sizeof(ip[0]);
std::unordered_set op(ip, ip + n);

algorithm

  • Get input in integer array ip.
  • Use the sizeof operator to determine the size of the input array.
  • Assign the size of the array to the integer variable n.
  • Construct an unordered_set operation using the array starting pointer and array size.
  • Display the content of op.

Example

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

template <size_t N> unordered_set<int> solve(int (&ip)[N]) {
   //the size is determined of the input array
   int n = sizeof(ip) / sizeof(ip[0]);

   //output set is constructed using range constructor
   std::unordered_set<int> op(ip, ip + n);
   return op;
}

int main()
{
   int ip[] = {30, 20, 50, 10, 70};
   unordered_set<int> op = solve(ip);

   //display the input
   cout<< "The input array is: ";
   for(int i : ip) {
      cout<< i << " ";
   }  

   //display the output
   cout<< "\nThe output set is: ";
   for(int j : op) {
      cout<< j << " ";
   }
   return 0;
}

Output

The input array is: 30 20 50 10 70 
The output set is: 70 10 50 20 30

In this example, we have to determine the size of the array using the sizeof function. us Assign size to variable n and create unordered_set using pointers ip and ip n operate.

in conclusion

unordered_set can contain any type of data. To change the data type it holds, we have to change the data type contained in . The container supports primitive and user-defined types well. In practice, unordered_set works quite well, generally providing constant time search operations. All operations on unordered_set typically take constant time O(1), although in the worst case they may take up to linear time O(n), depending on the internal hash function.

The above is the detailed content of C++ program to convert array to set (hash set). For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:tutorialspoint. If there is any infringement, please contact admin@php.cn delete
如何优化Java集合排序性能如何优化Java集合排序性能Jun 30, 2023 am 10:43 AM

Java是一种功能强大的编程语言,广泛应用于各类软件开发中。在Java开发中,经常会涉及到对集合进行排序的场景。然而,如果不对集合排序进行性能优化,可能会导致程序的执行效率下降。本文将探讨如何优化Java集合排序的性能。一、选择合适的集合类在Java中,有多种集合类可以用来进行排序,如ArrayList、LinkedList、TreeSet等。不同的集合类在

使用HashSet类的addAll()方法将一个集合中的所有元素添加到另一个集合中使用HashSet类的addAll()方法将一个集合中的所有元素添加到另一个集合中Jul 24, 2023 am 08:58 AM

使用HashSet类的addAll()方法将一个集合中的所有元素添加到另一个集合中HashSet是Java集合框架中的一个实现类,它继承自AbstractSet,并实现了Set接口。HashSet是一个基于哈希表的无序集合,其中不允许包含重复的元素。它提供了许多常用的方法来操作集合中的元素,其中之一就是addAll()方法。addAll()方法的作用是将指定

C#中常见的并发集合和线程安全问题C#中常见的并发集合和线程安全问题Oct 09, 2023 pm 10:49 PM

C#中常见的并发集合和线程安全问题在C#编程中,处理并发操作是非常常见的需求。当多个线程同时访问和修改同一数据时,就会出现线程安全问题。为了解决这个问题,C#提供了一些并发集合和线程安全的机制。本文将介绍C#中常见的并发集合以及如何处理线程安全问题,并给出具体的代码示例。并发集合1.1ConcurrentDictionaryConcurrentDictio

Java Iterator 与 Iterable:迈入编写优雅代码的行列Java Iterator 与 Iterable:迈入编写优雅代码的行列Feb 19, 2024 pm 02:54 PM

Iterator接口Iterator接口是一个用于遍历集合的接口。它提供了几个方法,包括hasNext()、next()和remove()。hasNext()方法返回一个布尔值,指示集合中是否还有下一个元素。next()方法返回集合中的下一个元素,并将其从集合中删除。remove()方法从集合中删除当前元素。以下代码示例演示了如何使用Iterator接口来遍历集合:Listnames=Arrays.asList("John","Mary","Bob");Iterator

如何在Laravel中向集合添加新值?如何在Laravel中向集合添加新值?Sep 11, 2023 am 11:53 AM

CollectioninLaravel是一个API包装器,它帮助您处理在数组上执行的不同操作。它使用Illuminate\Support\Collection类来处理Laravel中的数组。要从给定的数组创建一个集合,您需要使用collect()辅助方法,它返回一个集合实例。之后,您可以在集合实例上使用一系列方法,如转换为小写,对集合进行排序。Example1的中文翻译为:示例1<?phpnamespaceApp\Http\Controllers;useIlluminate\Http\Re

优化Java集合查找性能的技巧优化Java集合查找性能的技巧Jun 30, 2023 pm 02:57 PM

Java开发中,使用集合是非常常见的操作之一。在实际开发中,经常需要对集合进行元素的查找操作。而集合的查找性能的高低直接影响着程序的执行效率和用户的使用体验。本文将介绍几种优化集合元素查找性能的方法。一、使用合适的集合类在Java中,有多种集合类可以选择,例如ArrayList、LinkedList、HashSet、TreeSet等等。不同的集合类有着不同的

使用C++编写,找到一个集合上的自反关系的数量使用C++编写,找到一个集合上的自反关系的数量Aug 26, 2023 pm 08:17 PM

在本文中,我们将解释在一个集合上找到反身关系的方法。在这个问题中,我们给出一个数字n,以及一个由n个自然数组成的集合,我们必须确定反身关系的数量。反身关系-如果对于集合A中的每个'a',(a,a)属于关系R,则称关系R是集合A上的反身关系。例如-Input:x=1Output:1Explanation:set={1},reflexiverelationsonA*A:{{1}}Input:x=2Output:4Explanation:set={1,2},reflexiverelationsonA*

Java Iterator和Iterable:集合遍历的密钥,揭开其神秘面纱Java Iterator和Iterable:集合遍历的密钥,揭开其神秘面纱Feb 20, 2024 am 10:27 AM

Iterator简介Iterator是Java中用于遍历集合的接口。它提供了一组方法,允许您以一种顺序的方式访问集合中的元素。您可以使用Iterator来遍历List、Set和Map等集合类型。演示代码:Listlist=newArrayList();list.add("one");list.add("two");list.add("three");Iteratoriterator=list.iterator();while(iter

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Safe Exam Browser

Safe Exam Browser

Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Atom editor mac version download

Atom editor mac version download

The most popular open source editor