请问delphi6中的数据结构类封装在哪个单元中?(50分)

  • 主题发起人 主题发起人 zhanjiaxu
  • 开始时间 开始时间
Z

zhanjiaxu

Unregistered / Unconfirmed
GUEST, unregistred user!
请问delphi6中的数据结构类封装在哪个单元中?比如树、图、各种检索与排序方法等数据结构。
如果指出具体的类名更好(如Tstack、TQUEUE等)
 
Math???
 
Unit

Contnrs

Description

Use a TQueue object to store and maintain a first-in first-out list.


TBucketList

TBucketList is a simple hash table that stores pointers indexed by pointers.

TClassList

TClassList maintains a list of classes.

TComponentList

TComponentList maintains a list of components, updating itself when a component is freed.

TCustomBucketList

TCustomBucketList is the base class for lists that store items under a limited number of categories.

TObjectBucketList

TObjectBucketList is a simple hash table that stores objects that are identified by other objects.

TObjectList

TObjectList maintains a list of (owned) objects.

TObjectQueue

TObjectQueue maintains a first-in first-out list of objects.

TObjectStack

TObjectStack maintains a last-in first-out list of objects.

TOrderedList

TOrderedList maintains an array of pointers that must be accessed in serial order.

TQueue

TQueue maintains a first-in first-out array of pointers.

TStack

TStack maintains a last-in first-out array of pointers.
 
我主要是问树、图、各种检索与排序方法等数据结构所在的单元,tstack、tlist、tqueue我已经早知道了,
不知道有没有人知道,等着急用!谢谢!!
 
后退
顶部