我正在努力想出一个类似字典的数据结构,我可以在Erlang中使用它。目标是保证所有值以及密钥都是唯一的。我可以在每次修改后通过显式一致性检查来做到这一点,但我希望有一个模糊的类型可以为我做这个。有吗?如果没有,有没有比将支票包装到修改数据的每个函数(或返回稍微不同的副本)更好的方法?
我希望至少有120个元素,不超过几千元,以防万一。
答案 0 :(得分:6)
这样的事情:
-module(unidict).
-export([
new/0,
find/2,
store/3
]).
new() ->
dict:new().
find(Key, Dict) ->
dict:find({key, Key}, Dict).
store(K, V, Dict) ->
Key = {key, K},
case dict:is_key(Key, Dict) of
true ->
erlang:error(badarg);
false ->
Value = {value, V},
case dict:is_key(Value, Dict) of
true ->
erlang:error(badarg);
false ->
dict:store(Value, K, dict:store(Key, V, Dict))
end
end.
示例shell会话:
1> c(unidict).
{ok,unidict}
2> D = unidict:new().
{dict,0,16,16,8,80,48,
{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},
{{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]}}}
3> D1 = unidict:store(key, value, D).
{dict,2,16,16,8,80,48,
{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},
{{[],[],[],[],[],[],[],[],[],[],[],[],[],[],
[[{key,key}|value],[{value,...}|{...}]],
[]}}}
4> D2 = unidict:store(key, value, D1).
** exception error: bad argument
in function unidict:store/3
5> D2 = unidict:store(key2, value, D1).
** exception error: bad argument
in function unidict:store/3
6> D2 = unidict:store(key, value2, D1).
** exception error: bad argument
in function unidict:store/3
7> D2 = unidict:store(key2, value2, D1).
{dict,4,16,16,8,80,48,
{[],[],[],[],[],[],[],[],[],[],[],[],[],[],[],[]},
{{[],
[[{key,key2}|value2]],
[],[],[],[],[],[],[],[],[],[],[],
[[{value,value2}|{key,key2}]],
[[{key,key}|value],[{value,...}|{...}]],
[]}}}
8> unidict:find(key, D2).
{ok,value}
9> unidict:find(key2, D2).
{ok,value2}
答案 1 :(得分:1)
有吗?
我相信不在标准库中。我会使用由dict()
和set()
值组成的对。
答案 2 :(得分:1)
您可以使用简单的{key,value}列表来表示几百个元素:
put(L, K, V) ->
case lists:keyfind(K, 1, L) of
{K, _} -> erlang:error(badarg);
false ->
case lists:keyfind(V, 2, L) of
{_, V} -> erlang:error(badarg);
false -> [{K,V} | L]
end
end.
get(L, K) ->
case lists:keyfind(K, 1, L) of
{K, V} -> {'value', V};
false -> 'undefined'
end.