Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
792 views
in Technique[技术] by (71.8m points)

List in Prolog with elements in round brackets

Good Morning

I have list similiar to this: [(1-4), (2-4), (3-4)]. I'd like to write only first/second/third part of round bracket. I wrote a function:

write_list([]).

write_list([Head|Tail]) :-
  write(Head), nl,
  write_list(Tail).

It only writes whole round bracket:
1-4
2-4
3-4

I'd like my output to be the 1st element of round bracket:
1
2
3

I'll be grateful for any help :D

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Here you are:

write_list([]).
write_list([(A-_)|Tail]) :-
  writeln(A),
  write_list(Tail).

Query:

?- write_list([(1-4),(2-4),(3-4)]).
1
2
3
true

writeln/1 is simply write/1 followed by nl .


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...