I wanted to ask which one is better to use because avg. case complexity of set is log(n) while that of unordered_set is o(1) while worst case of set is same but that of unordered set is o(n).
And what are the points that we should take care of while using unordered_set so that we can work with no changes in inbuilt unordered_set?
Any help would be appreciated.