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

2021-10-08 15:05:06 字數 989 閱讀 5200

本題要求實現乙個函式,求單鏈表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;

/* 定義單鏈表型別 */

intfactorialsum

( list l )

;int

main()

printf

("%d\n"

,factorialsum

(l))

;return0;

}/* 你的**將被嵌在這裡 */

輸入樣例:

353

6

輸出樣例:

846
int

factorialsum

( list l )

sum+

=s; l=l->next;

s=1;

}return sum;

}

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

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

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

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

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

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