4 6 求單鏈表結點的階乘和 15分

2021-07-15 07:46:38 字數 516 閱讀 4841

本題要求實現乙個函式,求單鏈表l結點的階乘和。這裡預設所有結點的值非負,且題目保證結果在int範圍內。

函式介面定義:

int factorialsum( list l );

其中單鏈表list的定義如下:

typedef

struct node *ptrtonode;

struct node ;

typedef ptrtonode list; /* 定義單鏈表型別 */

還是很簡單的一道題目,唯一可能要理解的是,當單鏈表到達最後結點時,這個結點的next域,是指向null的。於是可以利用這一點來判斷單鏈表是否遍歷完。

int factorialsum ( list l )

sum = sum + fac;

l = l->next;

}return

sum;

}

只要l 不是null,while迴圈就繼續….其餘沒什麼好解釋的了….

4 6 求單鏈表結點的階乘和 15分

本題要求實現乙個函式,求單鏈表l結點的階乘和。這裡預設所有結點的值非負,且題目保證結果在int範圍內。int factorialsum list l 其中單鏈表list的定義如下 typedef struct node ptrtonode struct node typedef ptrtonode ...

4 6 求單鏈表結點的階乘和

本題要求實現乙個函式,求單鏈表l結點的階乘和。這裡預設所有結點的值非負,且題目保證結果在int範圍內。int factorialsum list l 其中單鏈表list的定義如下 typedef struct node ptrtonode struct node typedef ptrtonode ...

6 6 求單鏈表結點的階乘和(15 分)

本題要求實現乙個函式,求單鏈表l結點的階乘和。這裡預設所有結點的值非負,且題目保證結果在int範圍內。int factorialsum list l 其中單鏈表list的定義如下 typedef struct node ptrtonode struct node typedef ptrtonode ...