2
votes
2answers
24 views
substitute in a nested list (prolog)
/* substitute(X,Y,Xs,Ys) is true if the list Ys is the result of substituting Y for all occurrences of X in the list Xs.
This is what I have so far:
subs(_,_,[],[]).
subs(X,Y,[X| …
6
votes
7answers
143 views
Can you get a job thanks to your Prolog skills?
This Prolog question is introduced as an interview question. Can you get a job thanks to your Prolog skills? Is it used in the industry? (ok, ok, a job can be out of the industry t …
1
vote
1answer
44 views
Prolog : Learning by example
I am trying to learn a little bit about swi-prolog (beyond the basic, useless programs).
Can anyone explain (perhaps in pseudocode) what this sudoku solver and the related functio …
0
votes
1answer
20 views
prolog - why this strange trace
here is the prolog code (which i sort of follow).
len([],0).
len([_|T],N) :- len(T,X), N is X+1.
and here is the trace for it (im running linux, swi)
[trace] ?- len([d,f,w …
0
votes
1answer
46 views
Given [1,2,3] in prolog get back [6,5,3] by reverse accumalation
Q. Given [1,2,3] in prolog get back [6,5,3] by reverse accumalation
I have the start code:
accumalate([H],[H]).
accumalate([H1 | H2], [Hnew, H2]),
Hnew is H1 + H2.
....
…
3
votes
2answers
134 views
Prolog - member predicate one-liner
Interview question!
This is how you normally define the member relation in Prolog:
member(X, [X|_]). % member(X, [Head|Tail]) is true if X = Head
…
0
votes
2answers
37 views
How to determine whether two list have same element in prolog?
How to determine whether two list have same element in prolog?
If i have two list A and B, i want to know whether they have the same element.
1
vote
3answers
80 views
Pascal’s Triangle in Prolog
I have written a function for returning the next row in Pascal's Triangle given the current row:
pascal_next_row([X],[X]).
pascal_next_row([H,H2|T],[A|B]):-
pascal_next_row([H …
2
votes
2answers
32 views
SWI-Prolog conditional statements
I'm trying to write a function that will test to see if the word hello is contained in a list. If it is contained, i don't want it to say "true", i want it to say : "yes, the word …
1
vote
3answers
50 views
prolog pascal triangle
hi is there anybody know how can i do the pascal nth row
when i ask for
:? pascal(2,Row).
i get Row=[1,2,1]
??
please help me
1
vote
2answers
43 views
Prolog Question
hill(+IntList) succeeds if IntList consists of monotonically increasing integers followed by monotonically decreasing integers. For example, [1,2,5,8,11,6,3,-1] is a hill, but [1, …
1
vote
3answers
33 views
prolog cut off in method
I have a question I would like to ask you something about a code snippet:
insert_pq(State, [], [State]) :- !.
insert_pq(State, [H|Tail], [State, H|Tail]) :-
precedes(State, H) …
1
vote
2answers
34 views
Uses of non-ground facts in Prolog?
In Prolog you can write a ground fact as:
lost(jen).
You can also write a non-ground fact as:
lost(X).
Does this makes any sense? Could you show me a practical/real example w …
1
vote
2answers
49 views
What does \+ means in Prolog?
I've seen some answers here that use it and I don't know what it means or how to use it. I's also hard to look for it via a search engine :)
1
vote
0answers
73 views
Prolog parse postfix math expressions
I solved this my self. I'll post the solution when were past due date for my homework.
Okay, I'm going to build a parser or an evaluator. The de facto standard when parsing with …
