TBucketArray and TBucket represent a list of buckets that each store an array of items.
TBucket = record Count: Integer; Items: TBucketItemArray; end;
struct TBucket { int Count; TBucketItemArray Items; };
TBucketArray is a dynamic array of TBucket vakyes. Each TBucket represents a dynamic array of items.
Count is the number of items in a bucket.
Items is the array of items that the bucket stores.
TBucketList uses TBucketArray to represent its collection of buckets, or categories, under which it stores items.
|
Copyright(C) 2009 Embarcadero Technologies, Inc. All Rights Reserved.
|
|
What do you think about this topic? Send feedback!
|