有人可以给我写回单向清单的程序吗?

时间:2019-05-22 14:57:45

标签: pascal

Unit prog;
     Interface
     Type
            Tinfo=char;
            Pelem= ^ Telem;
            Telem = record
                   Info:Tinfo;
                   Next: Pelem;
            End;

            List=record 
                   An: Pelem;
Implementation

End.

0 个答案:

没有答案