mirror of
https://github.com/krahets/hello-algo.git
synced 2024-12-27 00:36:28 +08:00
1c8b7ef559
* Replace 结点 with 节点 Update the footnotes in the figures * Update mindmap * Reduce the size of the mindmap.png
57 lines
2 KiB
Zig
57 lines
2 KiB
Zig
// File: hashing_search.zig
|
||
// Created Time: 2023-01-15
|
||
// Author: sjinzh (sjinzh@gmail.com)
|
||
|
||
const std = @import("std");
|
||
const inc = @import("include");
|
||
|
||
// 哈希查找(数组)
|
||
fn hashingSearchArray(comptime T: type, map: std.AutoHashMap(T, T), target: T) T {
|
||
// 哈希表的 key: 目标元素,value: 索引
|
||
// 若哈希表中无此 key ,返回 -1
|
||
if (map.getKey(target) == null) return -1;
|
||
return map.get(target).?;
|
||
}
|
||
|
||
// 哈希查找(链表)
|
||
fn hashingSearchLinkedList(comptime T: type, map: std.AutoHashMap(T, *inc.ListNode(T)), target: T) ?*inc.ListNode(T) {
|
||
// 哈希表的 key: 目标节点值,value: 节点对象
|
||
// 若哈希表中无此 key ,返回 null
|
||
if (map.getKey(target) == null) return null;
|
||
return map.get(target);
|
||
}
|
||
|
||
// Driver Code
|
||
pub fn main() !void {
|
||
var target: i32 = 3;
|
||
|
||
// 哈希查找(数组)
|
||
var nums = [_]i32{ 1, 5, 3, 2, 4, 7, 5, 9, 10, 8 };
|
||
// 初始化哈希表
|
||
var map = std.AutoHashMap(i32, i32).init(std.heap.page_allocator);
|
||
defer map.deinit();
|
||
for (nums) |num, i| {
|
||
try map.put(num, @intCast(i32, i)); // key: 元素,value: 索引
|
||
}
|
||
var index = hashingSearchArray(i32, map, target);
|
||
std.debug.print("目标元素 3 的索引 = {}\n", .{index});
|
||
|
||
// 哈希查找(链表)
|
||
var mem_arena = std.heap.ArenaAllocator.init(std.heap.page_allocator);
|
||
defer mem_arena.deinit();
|
||
const mem_allocator = mem_arena.allocator();
|
||
var head = try inc.ListUtil.arrToLinkedList(i32, mem_allocator, &nums);
|
||
// 初始化哈希表
|
||
var map1 = std.AutoHashMap(i32, *inc.ListNode(i32)).init(std.heap.page_allocator);
|
||
defer map1.deinit();
|
||
while (head != null) {
|
||
try map1.put(head.?.val, head.?);
|
||
head = head.?.next;
|
||
}
|
||
var node = hashingSearchLinkedList(i32, map1, target);
|
||
std.debug.print("目标节点值 3 的对应节点对象为 ", .{});
|
||
try inc.PrintUtil.printLinkedList(i32, node);
|
||
|
||
_ = try std.io.getStdIn().reader().readByte();
|
||
}
|
||
|