loadTable(size, C) A = new array of given size for i=0 to n-1 do h = hash(C[i]) if(A[h] is empty) then A[h] = new Linked List add C[i] to A[h] return A end
search(A, t) h = hash(t) list = A[h] if(list is empty) then return false if(list contains t) then return true return false end