46 lines
1.3 KiB
JavaScript
46 lines
1.3 KiB
JavaScript
/**
|
|
* File: hashing_search.js
|
|
* Created Time: 2022-12-29
|
|
* Author: Zhuo Qinyue (1403450829@qq.com)
|
|
*/
|
|
|
|
const { arrToLinkedList } = require('../modules/ListNode');
|
|
|
|
/* Hash search (array) */
|
|
function hashingSearchArray(map, target) {
|
|
// Hash table's key: target element, value: index
|
|
// If the hash table does not contain this key, return -1
|
|
return map.has(target) ? map.get(target) : -1;
|
|
}
|
|
|
|
/* Hash search (linked list) */
|
|
function hashingSearchLinkedList(map, target) {
|
|
// Hash table key: target node value, value: node object
|
|
// If the key is not in the hash table, return null
|
|
return map.has(target) ? map.get(target) : null;
|
|
}
|
|
|
|
/* Driver Code */
|
|
const target = 3;
|
|
|
|
/* Hash search (array) */
|
|
const nums = [1, 5, 3, 2, 4, 7, 5, 9, 10, 8];
|
|
// Initialize hash table
|
|
const map = new Map();
|
|
for (let i = 0; i < nums.length; i++) {
|
|
map.set(nums[i], i); // key: element, value: index
|
|
}
|
|
const index = hashingSearchArray(map, target);
|
|
console.log('The index of target element 3 is' + index);
|
|
|
|
/* Hash search (linked list) */
|
|
let head = arrToLinkedList(nums);
|
|
// Initialize hash table
|
|
const map1 = new Map();
|
|
while (head != null) {
|
|
map1.set(head.val, head); // key: node value, value: node
|
|
head = head.next;
|
|
}
|
|
const node = hashingSearchLinkedList(map1, target);
|
|
console.log('Target node value 3's corresponding node object is', node);
|