請幫助我。下面的代碼是由代表多項式函數和排序是多項式:使用鏈接列表IN表示並排序多項式C
#include <stdio.h>
#include <stdlib.h>
typedef struct PolyNode *pnode;
typedef struct PolyNode {
float coef;
int expon;
pnode next;
};
pnode Make_Node(pnode ptr, float coef, int expon) {
ptr->coef = coef;
ptr->expon = expon;
ptr->next = NULL;
return ptr;
}
pnode Input_Node(pnode ptr, float coef, int expon) {
if (ptr->expon < expon || ptr) {
pnode temp = NULL;
temp = malloc(sizeof(pnode));
temp = Make_Node(temp, coef, expon);
temp->next = ptr;
ptr = temp;
return ptr;
} else {
pnode temp = NULL;
temp = malloc(sizeof(pnode));
temp = Make_Node(temp, coef, expon);
pnode pol;
pol = ptr;
while (pol->next && pol->next->expon > expon) {
pol = pol->next;
}
temp->next = pol->next;
pol->next = temp;
return ptr;
}
}
void Print_Pol(pnode ptr) {
pnode temp;
temp = ptr;
while (temp) {
printf("%gx^%d", temp->coef, temp->expon);
if (temp->next != NULL) {
printf(" + ");
}
temp = temp->next;
}
}
int main() {
pnode ptr;
ptr = (pnode)malloc(sizeof(pnode));
ptr = Make_Node(ptr, 2, 3);
ptr->next = NULL;
ptr = Input_Node(ptr, 2, 4);
printf("%s%d\n", &ptr, ptr->expon);
ptr = Input_Node(ptr, 3, 6);
printf("%s%d\n", &ptr, ptr->expon);
// ptr = Input_Node(ptr, 3, 7);
Print_Pol(ptr);
return 0;
}
幫幫我吧!當我在// ptr = Input_Node(ptr,3,7)之前擦除「//」時;該程序不運行。
不要隱藏指針性質的typedef後面!它迷惑了每個人,包括你。 –
甚至當這個評論是 – CIsForCookies
它不運行我建議把錯誤輸出作爲文本在問題中;很少保證你的圖片鏈接將會持續工作。 – Jacob