且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

使用C中的文件实现链接列表

更新时间:2021-06-30 01:41:34

正如SA所说,基本上你有两件事:



1 - 链表类

2 - 文件格式。



您可以阅读文件格式并将项目从那里推送到链接列表。
As SA said, basically you have two things here:

1 - a linked list class
2 - a file format.

You can read your file format and shove the items in to your linked list from there.