// Preprocess onceconst hashMap = new Map();
// Use a unique key like "id"
data.forEach(item => hashMap.set(item.id, item));
// Real-time search
const result = hashMap.get(userInput);
// Sort once - Sort by keyconst sortedData = [...data].sort((a, b) => a.id.localeCompare(b.id));
// Binary search function
function binarySearch(arr, target) {
let low = 0, high = arr.length - 1;
while (low <= high) {
const mid = Math.floor((low + high) / 2);
if (arr[mid].id === target) return arr[mid];
else if (arr[mid].id < target) low = mid + 1;
else high = mid - 1;
}
return null;
}
// Usage
const result = binarySearch(sortedData, userInput);
// Avoid this for large data!const result = data.find(item => item.id === userInput);