Pergunta de entrevista da empresa Apple

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

Respostas da entrevista

Sigiloso

19 de set. de 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.

Sigiloso

2 de dez. de 2018

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