Prolog- How to sum only part of list inside another list?

前端 未结 2 771
盖世英雄少女心
盖世英雄少女心 2021-01-24 06:01

Define a recursive rule, in the form of sum(Lst, Total), which can calculate the sum of a list of stated, where Lst is in the format of [[s1, p1], [s2, p2],

2条回答
  •  梦谈多话
    2021-01-24 06:49

    sum(L,Total):- total(L,0,Total).

    sum([],Total,Total).

    sum([[_|HT]T],Temp,Total) :- Temp1 is temp+HT,total(T,Temp1,Total).

提交回复
热议问题