Lecture-04-Prolog-Backtracking control. Heterogeneous lists.pdf

🖋 Notes

Lists

[1, 2, 3]
[dog, cat, canary]
[“valerie ann”,“jennifer caitlin”,“benjamin thomas”]
% element = integer
% list = element*

Head & Tail of a list

The head of the list [a, b, c] is a 
The tail of [a, b, c] is [b, c]

The head of the list [c] is c 
The tail of [c] is []

The empty list [] cannot be split into head and tail.

List processing

[a bc]
[a|[b, c]]
[a|[b|[c]]]
[a|[b|[c|[]]]]
[a|[b,c]]
[a,b|[c]]
[a,b,c|[]]