可能是双链表的节点中的多个元素?

时间:2012-10-07 06:06:41

标签: c

我想知道是否可以在C中的双向链表的节点中插入多个元素。我需要能够读取包含以下内容的文件:

00:00 67.7

00:01 67.6

00:02 67.7

00:03 67.6

00:04 67.6

00:05 67.3

00:06 67.4

将前4个数字复制为2个整数,将第3个数字复制为浮点数。我希望将这3个放在双链表的节点中,以便能够将它们与其他节点中的数字进行比较。我正在考虑这个问题:

while (fscanf(ifp, "%d:%d %d.%d ", &hour, &min, &tempI, &tempD) != EOF) {

int dlist_ins_next(Dlist *list, DlistElmt *element1, *element2, *element3, const void *int1, *int2, *float);
}

1 个答案:

答案 0 :(得分:1)

由于您希望第三个作为浮点值,因此请将扫描功能更改为:

fscanf(ifp, "%d:%d %f ", &hour, &min, &temp)

您应该将节点实现为结构:

struct node
{
  int hour;
  int min;
  float temp;

  struct node *next;
  struct node *prev;    
};