摘要: -module(tree1). -export([test1/0]). lookup(Key,nil) -> not_found; lookup(Key,{Key,Value,_,_}) -> {found,Value}; lookup(Key,{Key1,_,Smaller,_}) when Key lookup(Key,Smaller); looku... 阅读全文
posted @ 2018-08-13 10:45 孤独信徒 阅读(413) 评论(0) 推荐(0)