| Java 中的实现 | ||||||
|---|---|---|---|---|---|---|
| Hash Table | Resizable Array | Balanced Tree | Linked List | Hash Table + Linked List | ||
| Interfaces | Set | HashSet | TreeSet | LinkedHashSet | ||
| List | ArrayList | LinkedList | ||||
| Map | HashMap | TreeMap | LinkedHashMap | |||
与之对比
| C5中的实现 | ||||||
|---|---|---|---|---|---|---|
| Hash Table | Resizable Array | Balanced Tree | Linked List | Hash Table + Linked List | ||
| Interfaces | ICollection | HashSet | TreeSet | HashedLinkedList | ||
| IList | ArrayList | LinkedList | ||||
| IDictionary | HashDictionary | TreeDictionary | ???LinkedHashMap | |||
java.util.Collection<T>对应 C5中的C5.ICollection
C5只读模式的集合
GuardedCollection<T> GuardedList<T> GuardedDictionary<K,V>