Data structure in C++

arnab123 (1)
To check if a set B is a subset of A or not. Which data structure to be used to store set A for quicker response(linked list/hash map)? What if I want to check intersection also?
vlad from moscow (3662)
It is enough to sort the both sets and to use standard algorithm std::includes or set_intersection.
Last edited on
Registered users can post here. Sign in or register to post.