Search
 
SCRIPT & CODE EXAMPLE
 

CPP

how to do sets in cpp

#include <set>

int main() {
  set<int> my_set = {1, 2, 3, 4};
  for (int i = 0; i < 4; i++) {
    cout << my_set[i] << endl;
  }
}
Comment

PREVIOUS NEXT
Code Example
Cpp :: push_back struct c++ 
Cpp :: C++ array sort method 
Cpp :: c++ factorial 
Cpp :: udo apt install dotnet-sdk-5 
Cpp :: cpp std list example 
Cpp :: docker.io : Depends: containerd (= 1.2.6-0ubuntu1~) E: Unable to correct problems, you have held broken packages 
Cpp :: string to char* 
Cpp :: convert string to lpwstr 
Cpp :: the code execution cannot proceed because glew32.dll was not found 
Cpp :: ViewController import 
Cpp :: sort 0 1 2 leetcode 
Cpp :: calloc c++ 
Cpp :: how to split a string in c++ 
Cpp :: cin.getline 
Cpp :: c++ vector initialization 
Cpp :: remove from vector by value c++ 
Cpp :: c++ string size 
Cpp :: case label in c++ 
Cpp :: min in c++ 
Cpp :: min heap priority queue c++ 
Cpp :: chudnovsky algorithm c++ 
Cpp :: c++ vs g++ 
Cpp :: stack overflow c++ 
Cpp :: c++ reverse string 
Cpp :: sort vector from largest to smallest 
Cpp :: c++ output current timestamp 
Cpp :: c++ multiple inheritance 
Cpp :: create matrix cpp 
Cpp :: hashmap c++ 
Cpp :: is anagram c++ 
ADD CONTENT
Topic
Content
Source link
Name
1+4 =