I want to make an array in Prolog. How can do it? How can access the elements?
feedback
|
|
There's no 'array' in prolog. I mean, you cannot get an indexed list. All you have to do is access the list as somewhat like a linked list. You'll have to do it in a recursive way. | |||||||
feedback
|
|
If you are using a Prolog that has unlimited arity on terms, like SWI-Prolog, you can use setarg/3 to emulate a vector. Please read the notes that the project leader wrote on the argument. I've never used arrays in Prolog, but answering this question, I tested for efficiency of the functionality. Actually works fairly well. | |||||||
feedback
|
|
Yap Prolog has experimental support for arrays See | |||
|
feedback
|
|
The stadard Prolog way of having (possibly limited in length, non-mutable) arrays is with
Bratko ("Prolog programming for artificial intelligence") has the code to solve the classic 8 queens problem using this feature. Another way to emulate arrays in Prolog is to encode your list as a binary tree, for | |||
|
feedback
|