Pregunta de entrevista de Apple

How will you implement sets and the intersection operation? Complexity?

Respuestas de entrevistas

Anónimo

19 sept 2011

I suggested to implement sets using self-balanced binary trees, although I can be done (dunno if in a more efficient way) with hashmaps.

Anónimo

2 dic 2018

self-balanced binary trees is not a good choice as you're assuming the content of the set are comparable.