hash-string.sml

来自「这是我们参加06年全国开源软件的竞赛作品」· SML 代码 · 共 27 行

SML
27
字号
(* hash-string.sml * * COPYRIGHT (c) 1992 by AT&T Bell Laboratories *)structure HashString : sig    val hashString : string -> word  end = struct    fun charToWord c = Word.fromInt(Char.ord c)  (* A function to hash a character.  The computation is:   *   *   h = 33 * h + 720 + c   *)    fun hashChar (c, h) = Word.<<(h, 0w5) + h + 0w720 + (charToWord c)(* NOTE: another function we might try is h = 5*h + c, which is used * in STL. *)    fun hashString s = CharVector.foldl hashChar 0w0 s	    end (* HashString *)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?