PTA,6 6 求單鏈表結點的階乘和

2021-10-04 07:40:13 字數 767 閱讀 9373

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

函式介面定義:

int factorialsum( list l );

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

typedef struct node ptrtonode;

struct node ;

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

裁判測試程式樣例:

#include

#include

typedef struct node ptrtonode;

struct node ;

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

int factorialsum( list l );

int main()

printf("%d\n", factorialsum(l));

return 0;/* 你的**將被嵌在這裡 */

輸入樣例:

35 3 6

輸出樣例:

846寫題思路:這個題確實不怎麼難,就是用乙個while語句遍歷指標,內部在巢狀乙個for迴圈把階乘求出來,唯一把我卡主的乙個點就是忘記把變數j重置,導致後面輸出的時候數字格外的大。

**如下:

int

factorialsum

( list l )

return sum;

}

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

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

PTA 求單鏈表結點的階乘和

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

求單鏈表結點的階乘和 PTA

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