delphi7中有链表吗(10分)

  • 主题发起人 sunjianchao1986
  • 开始时间
S

sunjianchao1986

Unregistered / Unconfirmed
GUEST, unregistred user!
delphi7中有链表吗,如果有把用法告诉我好吗,急用,谢了
 
type
PStru=^TStru;
TStru=record
MyDate:Integer;
Next:pStru;
end;
 
C中能实现的数据结构,也一定可以在delphi中实现
 
谨慎使用这玩意儿,如果以后转到delphi.net,不能用的
 
Delphi中用TList和它的子类就可以了,除非是学“数据结构”,否则不要用链表。
 
顶部