本文介绍了从文件中读取大数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想编写一个从文本文件中读取数十亿个整数的C代码。每个整数长度为10位(例如-2311872000)。然后我建立一个链表来存储这些整数。我可以这样做吗?
I want to write a C code that reads billions of integers from a text file. Each integer is of length 10 digits (e.g. -2311872000). then I build a linked list to store these integers.how could I do that ?
推荐答案
这篇关于从文件中读取大数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!