我試圖讀取包含以下內容的文件。將文件讀入鏈接列表
59878, Moby Dick
442419, The Peach
535, Moby Dick
12, History of War
我有一個鏈接列表保存整數類型和另一個持有一個字符和鏈接列表指針。這是在後者鏈表中的節點:
typedef struct Node {
struct Node* prev;
char *title;
ListRef library; //Pointer to a different linked list
struct Node* next;
} Node;
typedef struct Node* NodeRef;
NodeRef newNode(char *bookTitle, List LL) {
NodeRef node = (Node*)malloc(sizeof(Node));
node->next = node->prev = NULL;
node->title = (char*)calloc(60, sizeof(char));
node->library = newList();
node->library = LL;
node->title = bookTitle;
return(node);
}
「從文件讀取值」和「讀取文件輸入」有什麼區別?你能給我們一個[最小完整的例子](http://www.sscce.org)嗎? – Beta
對不起,我不確定那裏有多餘的句子。 – user3662681