My current knowledge of ADT states that its a blueprint and all the real implementation should should follow the rules / contracts described in the blueprint.
我目前对ADT的了解表明,它的蓝图和所有真正的实施应该遵循蓝图中描述的规则/合同。
But while reading a book on Algorithm I found this term The symbol table is a prototypical abstract data type
what do we mean by prototypical in this statement?
但是在读一本关于算法的书时我发现这个术语符号表是一个典型的抽象数据类型,我们在这个陈述中的原型是什么意思?
1 个解决方案
#1
1
An abstract data type is a mathematical model for data types, that means it describes possible values and operations for this data type, and not its concrete representation and implementation.
抽象数据类型是数据类型的数学模型,这意味着它描述了此数据类型的可能值和操作,而不是其具体表示和实现。
Prototypical means that it serves as illustration of typical qualities, and can be used as base for creating something derivative.
原型意味着它可以作为典型品质的例证,并且可以用作创建衍生物的基础。
#1
1
An abstract data type is a mathematical model for data types, that means it describes possible values and operations for this data type, and not its concrete representation and implementation.
抽象数据类型是数据类型的数学模型,这意味着它描述了此数据类型的可能值和操作,而不是其具体表示和实现。
Prototypical means that it serves as illustration of typical qualities, and can be used as base for creating something derivative.
原型意味着它可以作为典型品质的例证,并且可以用作创建衍生物的基础。