mirror of
https://github.com/krahets/hello-algo.git
synced 2026-06-15 14:48:05 +08:00
* Add Russian docs site baseline * Add Russian localized codebase * Polish Russian code wording * Update ru code translation. * Update code translation and chapter covers. * Fix pythontutor extraction. * Add README and landing page. * placeholder of profiles * Use figures of English version * Remove chapter paperbook
52 lines
2.0 KiB
Java
52 lines
2.0 KiB
Java
/**
|
||
* File: hashing_search.java
|
||
* Created Time: 2022-11-25
|
||
* Author: krahets (krahets@163.com)
|
||
*/
|
||
|
||
package chapter_searching;
|
||
|
||
import utils.*;
|
||
import java.util.*;
|
||
|
||
public class hashing_search {
|
||
/* Хеш-поиск (массив) */
|
||
static int hashingSearchArray(Map<Integer, Integer> map, int target) {
|
||
// key хеш-таблицы: целевой элемент, value: индекс
|
||
// Если такого key нет в хеш-таблице, вернуть -1
|
||
return map.getOrDefault(target, -1);
|
||
}
|
||
|
||
/* Хеш-поиск (связный список) */
|
||
static ListNode hashingSearchLinkedList(Map<Integer, ListNode> map, int target) {
|
||
// key хеш-таблицы: значение целевого узла, value: объект узла
|
||
// Если такого key нет в хеш-таблице, вернуть null
|
||
return map.getOrDefault(target, null);
|
||
}
|
||
|
||
public static void main(String[] args) {
|
||
int target = 3;
|
||
|
||
/* Хеш-поиск (массив) */
|
||
int[] nums = { 1, 5, 3, 2, 4, 7, 5, 9, 10, 8 };
|
||
// Инициализация хеш-таблицы
|
||
Map<Integer, Integer> map = new HashMap<>();
|
||
for (int i = 0; i < nums.length; i++) {
|
||
map.put(nums[i], i); // key: элемент, value: индекс
|
||
}
|
||
int index = hashingSearchArray(map, target);
|
||
System.out.println("Индекс целевого элемента 3 = " + index);
|
||
|
||
/* Хеш-поиск (связный список) */
|
||
ListNode head = ListNode.arrToLinkedList(nums);
|
||
// Инициализация хеш-таблицы
|
||
Map<Integer, ListNode> map1 = new HashMap<>();
|
||
while (head != null) {
|
||
map1.put(head.val, head); // key: значение узла, value: узел
|
||
head = head.next;
|
||
}
|
||
ListNode node = hashingSearchLinkedList(map1, target);
|
||
System.out.println("Объект узла со значением 3 = " + node);
|
||
}
|
||
}
|