mirror of
https://github.com/krahets/hello-algo.git
synced 2026-07-11 15:06:07 +00:00
d7b2277d2b
* Retranslate Japanese docs with GPT-5.4 * Retranslate Japanese code with GPT-5.4
51 lines
1.7 KiB
Swift
51 lines
1.7 KiB
Swift
/**
|
|
* File: hashing_search.swift
|
|
* Created Time: 2023-01-28
|
|
* Author: nuomi1 (nuomi1@qq.com)
|
|
*/
|
|
|
|
import utils
|
|
|
|
/* ハッシュ探索(配列) */
|
|
func hashingSearchArray(map: [Int: Int], target: Int) -> Int {
|
|
// ハッシュテーブルの key: 目標要素、value: インデックス
|
|
// ハッシュテーブルにこの key がなければ -1 を返す
|
|
return map[target, default: -1]
|
|
}
|
|
|
|
/* ハッシュ探索(連結リスト) */
|
|
func hashingSearchLinkedList(map: [Int: ListNode], target: Int) -> ListNode? {
|
|
// ハッシュテーブルの key: 目標ノード値、value: ノードオブジェクト
|
|
// ハッシュテーブルにこの key がなければ null を返す
|
|
return map[target]
|
|
}
|
|
|
|
@main
|
|
enum HashingSearch {
|
|
/* Driver Code */
|
|
static func main() {
|
|
let target = 3
|
|
|
|
/* ハッシュ探索(配列) */
|
|
let nums = [1, 5, 3, 2, 4, 7, 5, 9, 10, 8]
|
|
// ハッシュテーブルを初期化
|
|
var map: [Int: Int] = [:]
|
|
for i in nums.indices {
|
|
map[nums[i]] = i // key: 要素、value: インデックス
|
|
}
|
|
let index = hashingSearchArray(map: map, target: target)
|
|
print("目標要素 3 のインデックス = \(index)")
|
|
|
|
/* ハッシュ探索(連結リスト) */
|
|
var head = ListNode.arrToLinkedList(arr: nums)
|
|
// ハッシュテーブルを初期化
|
|
var map1: [Int: ListNode] = [:]
|
|
while head != nil {
|
|
map1[head!.val] = head! // key: ノード値、value: ノード
|
|
head = head?.next
|
|
}
|
|
let node = hashingSearchLinkedList(map: map1, target: target)
|
|
print("目標ノード値 3 に対応するノードオブジェクトは \(node!)")
|
|
}
|
|
}
|