Structure Binarymap

A VIK Wikiből
Ugrás a navigációhoz Ugrás a kereséshez

Ez az oldal a korábbi SCH wiki-ről lett áthozva. Az eredeti változata itt érhető el.

Ha úgy érzed, hogy bármilyen formázási vagy tartalmi probléma van vele, akkor kérlek javíts rajta egy rövid szerkesztéssel.

Ha nem tudod, hogyan indulj el, olvasd el a migrálási útmutatót


(* Binarymap -- applicative maps as balanced ordered binary trees *)
(* From SML/NJ lib 0.2, copyright 1993 by AT&T Bell Laboratories *)
(* Original implementation due to Stephen Adams, Southampton, UK *)

type ('key, 'a) dict

exception NotFound

val mkDict	 : ('key * 'key -> order) -> ('key, 'a) dict
val insert	 : ('key, 'a) dict * 'key * 'a -> ('key, 'a) dict
val find		: ('key, 'a) dict * 'key -> 'a
val peek		: ('key, 'a) dict * 'key -> 'a option
val remove	 : ('key, 'a) dict * 'key -> ('key, 'a) dict * 'a
val numItems  : ('key, 'a) dict -> int
val listItems : ('key, 'a) dict -> ('key * 'a) list
val app		 : ('key * 'a -> unit) -> ('key,'a) dict -> unit
val revapp	 : ('key * 'a -> unit) -> ('key,'a) dict -> unit
val foldr	  : ('key * 'a * 'b -> 'b)-> 'b -> ('key,'a) dict -> 'b
val foldl	  : ('key * 'a * 'b -> 'b) -> 'b -> ('key,'a) dict -> 'b
val map		 : ('key * 'a -> 'b) -> ('key,'a) dict -> ('key, 'b) dict
val transform : ('a -> 'b) -> ('key,'a) dict -> ('key, 'b) dict

(*
	[('key, 'a) dict] is the type of applicative maps from domain type
	'key to range type 'a, or equivalently, applicative dictionaries
	with keys of type 'key and values of type 'a. They are implemented
	as ordered balanced binary trees.

	[mkDict ordr] returns a new, empty map whose keys have ordering
	ordr.

	[insert(m, i, v)] extends (or modifies) map m to map i to v.

	[find (m, k)] returns v if m maps k to v; otherwise raises NotFound.

	[peek(m, k)] returns SOME v if m maps k to v; otherwise returns NONE.

	[remove(m, k)] removes k from the domain of m and returns the
	modified map and the element v corresponding to k. Raises NotFound
	if k is not in the domain of m.

	[numItems m] returns the number of entries in m (that is, the size
	of the domain of m).

	[listItems m] returns a list of the entries (k, v) of keys k and
	the corresponding values v in m, in order of increasing key values.

	[app f m] applies function f to the entries (k, v) in m, in
	increasing order of k (according to the ordering ordr used to
	create the map or dictionary).

	[revapp f m] applies function f to the entries (k, v) in m, in
	decreasing order of k.

	[foldl f e m] applies the folding function f to the entries (k, v)
	in m, in increasing order of k.

	[foldr f e m] applies the folding function f to the entries (k, v)
	in m, in decreasing order of k.

	[map f m] returns a new map whose entries have form (k, f(k,v)),
	where (k, v) is an entry in m.

	[transform f m] returns a new map whose entries have form (k, f v),
	where (k, v) is an entry in m.
*)

-- Peti - 2007.06.04.