Q 语言 - 词典
字典是列表的扩展,为创建表提供了基础。用数学术语来说,字典创建了
“域→范围”
或一般(简短)创建
“键→值”
元素之间的关系。
字典是键值对的有序集合,大致相当于哈希表。字典是由域列表和范围列表之间通过位置对应的显式 I/O 关联定义的映射。字典的创建使用“xkey”原语(!)
ListOfDomain ! ListOfRange
最基本的字典将简单列表映射到简单列表。
输入(一) | 输出(O) |
---|---|
`名称 | '约翰 |
`年龄 | 36 |
`性 | “M” |
重量 | 60.3 |
q)d:`Name`Age`Sex`Weight!(`John;36;"M";60.3) / Create a dictionary d q)d Name | `John Age | 36 Sex | "M" Weight | 60.3 q)count d / To get the number of rows in a dictionary. 4 q)key d / The function key returns the domain `Name`Age`Sex`Weight q)value d / The function value returns the range. `John 36 "M" 60.3 q)cols d / The function cols also returns the domain. `Name`Age`Sex`Weight
抬头
查找与输入值对应的字典输出值称为查找输入。
q)d[`Name] / Accessing the value of domain `Name `John q)d[`Name`Sex] / extended item-wise to a simple list of keys `John "M"
用动词@查找
q)d1:`one`two`three!9 18 27 q)d1[`two] 18 q)d1@`two 18
字典操作
修改和更新插入
与列表一样,字典的项目可以通过索引分配进行修改。
d:`Name`Age`Sex`Weight! (`John;36;"M";60.3) / A dictionary d q)d[`Age]:35 / Assigning new value to key Age q)d / New value assigned to key Age in d Name | `John Age | 35 Sex | "M" Weight | 60.3
字典可以通过索引分配来扩展。
q)d[`Height]:"182 Ft" q)d Name | `John Age | 35 Sex | "M" Weight | 60.3 Height | "182 Ft"
使用 Find (?) 进行反向查找
find (?) 运算符用于通过将一系列元素映射到其域元素来执行反向查找。
q)d2:`x`y`z!99 88 77 q)d2?77 `z
如果列表的元素不唯一,则查找返回从域列表映射到它的第一个项目。
删除条目
要从字典中删除条目,请使用删除 (_) 函数。( _ ) 的左操作数是字典,右操作数是键值。
q)d2:`x`y`z!99 88 77 q)d2 _`z x| 99 y| 88
如果第一个操作数是变量,则 _ 左侧需要有空格。
q)`x`y _ d2 / Deleting multiple entries z| 77
专栏词典
列字典是创建表的基础。考虑以下示例 -
q)scores: `name`id!(`John`Jenny`Jonathan;9 18 27) / Dictionary scores q)scores[`name] / The values for the name column are `John`Jenny`Jonathan q)scores.name / Retrieving the values for a column in a / column dictionary using dot notation. `John`Jenny`Jonathan q)scores[`name][1] / Values in row 1 of the name column `Jenny q)scores[`id][2] / Values in row 2 of the id column is 27
翻字典
翻转列字典的最终效果只是反转索引的顺序。这在逻辑上相当于调换行和列。
翻转列字典
字典的转置是通过应用一元翻转运算符获得的。看一下下面的例子 -
q)scores name | John Jenny Jonathan id | 9 18 27 q)flip scores name id --------------- John 9 Jenny 18 Jonathan 27
翻转列字典的翻转
如果你将字典转置两次,你将得到原始字典,
q)scores ~ flip flip scores 1b