Edmund Xin

C++ Set

C++ set is a container that stores unique elements in sorted. It's implemented as a self-balancing binary tree, usually as a red-black tree.

Software Engineer