Question d’entretien chez Salesforce

1) How would you implement a Hashtable by scratch? How would you implement the .Add() in the HashTable? How would you make the hashtable concurrent safe?

Réponse à la question d'entretien

Utilisateur anonyme

18 janv. 2018

1) An array of linked lists. 2) size % obj.getHashCode() 3) Put locks on each element in the array