Domanda di colloquio di Apple

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

Risposte di colloquio

Anonimo

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

Anonimo

2 dic 2018

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