forked from krahets/hello-algo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Swift codes for hash_map article
- Loading branch information
Showing
5 changed files
with
278 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,139 @@ | ||
/** | ||
* File: array_hash_map.swift | ||
* Created Time: 2023-01-16 | ||
* Author: nuomi1 ([email protected]) | ||
*/ | ||
|
||
/* 键值对 int->String */ | ||
class Entry { | ||
var key: Int | ||
var val: String | ||
|
||
init(key: Int, val: String) { | ||
self.key = key | ||
self.val = val | ||
} | ||
} | ||
|
||
/* 基于数组简易实现的哈希表 */ | ||
class ArrayHashMap { | ||
private var bucket: [Entry?] = [] | ||
|
||
init() { | ||
// 初始化一个长度为 100 的桶(数组) | ||
for _ in 0 ..< 100 { | ||
bucket.append(nil) | ||
} | ||
} | ||
|
||
/* 哈希函数 */ | ||
private func hashFunc(key: Int) -> Int { | ||
let index = key % 100 | ||
return index | ||
} | ||
|
||
/* 查询操作 */ | ||
func get(key: Int) -> String? { | ||
let index = hashFunc(key: key) | ||
let pair = bucket[index] | ||
return pair?.val | ||
} | ||
|
||
/* 添加操作 */ | ||
func put(key: Int, val: String) { | ||
let pair = Entry(key: key, val: val) | ||
let index = hashFunc(key: key) | ||
bucket[index] = pair | ||
} | ||
|
||
/* 删除操作 */ | ||
func remove(key: Int) { | ||
let index = hashFunc(key: key) | ||
// 置为 nil ,代表删除 | ||
bucket[index] = nil | ||
} | ||
|
||
/* 获取所有键值对 */ | ||
func entrySet() -> [Entry] { | ||
var entrySet: [Entry] = [] | ||
for pair in bucket { | ||
if let pair = pair { | ||
entrySet.append(pair) | ||
} | ||
} | ||
return entrySet | ||
} | ||
|
||
/* 获取所有键 */ | ||
func keySet() -> [Int] { | ||
var keySet: [Int] = [] | ||
for pair in bucket { | ||
if let pair = pair { | ||
keySet.append(pair.key) | ||
} | ||
} | ||
return keySet | ||
} | ||
|
||
/* 获取所有值 */ | ||
func valueSet() -> [String] { | ||
var valueSet: [String] = [] | ||
for pair in bucket { | ||
if let pair = pair { | ||
valueSet.append(pair.val) | ||
} | ||
} | ||
return valueSet | ||
} | ||
|
||
/* 打印哈希表 */ | ||
func print() { | ||
for entry in entrySet() { | ||
Swift.print("\(entry.key) -> \(entry.val)") | ||
} | ||
} | ||
} | ||
|
||
@main | ||
enum _ArrayHashMap { | ||
/* Driver Code */ | ||
static func main() { | ||
/* 初始化哈希表 */ | ||
let map = ArrayHashMap() | ||
|
||
/* 添加操作 */ | ||
// 在哈希表中添加键值对 (key, value) | ||
map.put(key: 12836, val: "小哈") | ||
map.put(key: 15937, val: "小啰") | ||
map.put(key: 16750, val: "小算") | ||
map.put(key: 13276, val: "小法") | ||
map.put(key: 10583, val: "小鸭") | ||
print("\n添加完成后,哈希表为\nKey -> Value") | ||
map.print() | ||
|
||
/* 查询操作 */ | ||
// 向哈希表输入键 key ,得到值 value | ||
let name = map.get(key: 15937)! | ||
print("\n输入学号 15937 ,查询到姓名 \(name)") | ||
|
||
/* 删除操作 */ | ||
// 在哈希表中删除键值对 (key, value) | ||
map.remove(key: 10583) | ||
print("\n删除 10583 后,哈希表为\nKey -> Value") | ||
map.print() | ||
|
||
/* 遍历哈希表 */ | ||
print("\n遍历键值对 Key->Value") | ||
for entry in map.entrySet() { | ||
print("\(entry.key) -> \(entry.val)") | ||
} | ||
print("\n单独遍历键 Key") | ||
for key in map.keySet() { | ||
print(key) | ||
} | ||
print("\n单独遍历值 Value") | ||
for val in map.valueSet() { | ||
print(val) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
/** | ||
* File: hash_map.swift | ||
* Created Time: 2023-01-16 | ||
* Author: nuomi1 ([email protected]) | ||
*/ | ||
|
||
import utils | ||
|
||
@main | ||
enum HashMap { | ||
/* Driver Code */ | ||
static func main() { | ||
/* 初始化哈希表 */ | ||
var map: [Int: String] = [:] | ||
|
||
/* 添加操作 */ | ||
// 在哈希表中添加键值对 (key, value) | ||
map[12836] = "小哈" | ||
map[15937] = "小啰" | ||
map[16750] = "小算" | ||
map[13276] = "小法" | ||
map[10583] = "小鸭" | ||
print("\n添加完成后,哈希表为\nKey -> Value") | ||
PrintUtil.printHashMap(map: map) | ||
|
||
/* 查询操作 */ | ||
// 向哈希表输入键 key ,得到值 value | ||
let name = map[15937]! | ||
print("\n输入学号 15937 ,查询到姓名 \(name)") | ||
|
||
/* 删除操作 */ | ||
// 在哈希表中删除键值对 (key, value) | ||
map.removeValue(forKey: 10583) | ||
print("\n删除 10583 后,哈希表为\nKey -> Value") | ||
PrintUtil.printHashMap(map: map) | ||
|
||
/* 遍历哈希表 */ | ||
print("\n遍历键值对 Key->Value") | ||
for (key, value) in map { | ||
print("\(key) -> \(value)") | ||
} | ||
print("\n单独遍历键 Key") | ||
for key in map.keys { | ||
print(key) | ||
} | ||
print("\n单独遍历值 Value") | ||
for value in map.values { | ||
print(value) | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters