1

我有一个结构数组,每个结构都作为元素列表工作。我需要向每个结构添加多个对象,并且我的 add 函数无法正常工作。

这是结构:

typedef struct object book, *list;
struct object{
int type;
int quantity;
list next;
};

这就是我定义数组的方式以及 main() 函数中的内容:

row_n=4 //fixed just for now
cols_n=3

product **t;

t= (product **)calloc(row_n, sizeof(product *));  // array of row pointers 
for (int i= 0; i<n; i++) {
t[i]= (product *)calloc(cols_n, sizeof(product));  // array of cols prod structs 
}

t[1][1].type= 5; //only for testing
t[1][1].quantity= 15; //only for testing
list_all(t,row_n,col_n); //list all elements inside each array, its working as intended
insert(t, 3, 6); //Trying to insert more books
insert(t, 6, 10);
insert(t, 9, 50);

这是 list_all 函数:

void list_all(product **t , int size_n , int size_m)
{
int i,j;
product *p;

for(i=0;i<size_n;i++){
    printf("--- row: ---: %d\n", i+1);
    for(j=0;j<size_m;j++){
        printf("--- col: ---: %d\n",j+1);
        p= &t[i][j];
        do {
            printf("Book Type:%d Amount:%d\n", p->type, p->quantity);
            p= p->next;
        } while (p!=NULL);
    }
  }
}

这实际上是我的问题所在,我需要修复此插入功能:

void insert(product **t, int id, int quantity)
{
product *p, *aux = NULL;
p=&t[0][0]; //doing it only in one position to test
if((aux = malloc(sizeof(product))) == NULL)
    printf("Memory error\n");
else
{
    aux->type=id;
    aux->quantity=quantity;
    p->next = p; }
p = aux;
}

我也需要一个删除书功能,但我想先解决这个问题。谢谢指教。

4

2 回答 2

0

错误信息是什么?

在你的代码中:

p->next = p;

似乎应该是:

aux->next = p;

这样,您插入一个产品作为列表的头部。

于 2013-06-01T23:19:09.263 回答
0

我看到的2个问题是

p->next = p; -> aux->next = p;

    //if
    p=&t[0][0];

    then 

    at the end 

    t[0][0] = p;

因为我认为 t[0][0] 仍然指向较早的指针而不是指向列表的开头,所以添加节点不可见

于 2013-06-02T07:42:10.520 回答