Class: CodeCook::Find::HashSet::HashSetT

Inherits:
CStruct
  • Object
show all
Defined in:
手写代码必备手册(Ruby版).rb

Overview

哈希集合

Defined Under Namespace

Classes: Node

Instance Attribute Summary (collapse)

Instance Attribute Details

- (Object) cmp

元素的比较函数



227
228
229
# File '手写代码必备手册(Ruby版).rb', line 227

def cmp
  @cmp
end

- (Object) hash

元素的哈希函数



225
226
227
# File '手写代码必备手册(Ruby版).rb', line 225

def hash
  @hash
end