You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
/* *
* F i l e : h a s h _ m a p . s w i f t
* C r e a t e d T i m e : 2 0 2 3 - 0 1 - 1 6
* A u t h o r : n u o m i 1 ( n u o m i 1 @ q q . c o m )
*/
import utils
@ main
enum HashMap {
/* D r i v e r C o d e */
static func main ( ) {
/* 初 始 化 哈 希 表 */
var map : [ Int : String ] = [ : ]
/* 添 加 操 作 */
// 在 哈 希 表 中 添 加 键 值 对 ( k e y , v a l u e )
map [ 12836 ] = " 小哈 "
map [ 15937 ] = " 小啰 "
map [ 16750 ] = " 小算 "
map [ 13276 ] = " 小法 "
map [ 10583 ] = " 小鸭 "
print ( " \n 添加完成后,哈希表为 \n Key -> Value " )
PrintUtil . printHashMap ( map : map )
/* 查 询 操 作 */
// 向 哈 希 表 中 输 入 键 k e y , 得 到 值 v a l u e
let name = map [ 15937 ] !
print ( " \n 输入学号 15937 ,查询到姓名 \( name ) " )
/* 删 除 操 作 */
// 在 哈 希 表 中 删 除 键 值 对 ( k e y , v a l u e )
map . removeValue ( forKey : 10583 )
print ( " \n 删除 10583 后,哈希表为 \n Key -> 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 )
}
}
}