我試圖追加兩個結構到一個 例如。追加兩個結構
l1 = add(1, add(2, NULL));
l2 = add(3, add(4, NULL));
myappend(l1,l2) = add(1,add(2,add(3,add(4,NULL))))
我嘗試了很多其他的方式,我可以想到......但它不工作......任何人都可以幫助我嗎?
struct list_node {
struct list_node * rest;
int first;
};
list add(int in, list l) {
list r = malloc(sizeof(struct list_node));
r->first = in;
r->rest = l;
return r;
}
// My attempted solution;
list myappend(list l1,list l2){
list k = malloc(sizeof(struct list_node));
k=l2;
k=add(l1,k);
return k;
}
「不工作」 - 更準確? – 2012-07-27 06:46:09
「我嘗試了很多其他我能想到的方式」,比如? – 2012-07-27 06:50:53
我沒有看到「列表」的定義。它是什麼? – wildplasser 2012-07-27 09:29:42