I want to make an array in Prolog. How can do it? How can access the elements?

link|improve this question

4  
tnx, i know this link. and something about Lists in prolog but i want to learn something like array in c++ (or c) with a simple example. if you have it please share. tnx again – zahraTZ Jan 29 at 8:07
AFAIK, it is impossible to make an array in prolog, but you can simulate it with a simple predicate "returning" i-th element of your list if you really need it. – Nya Jan 29 at 8:16
List can use for 8-puzzle problem?? – zahraTZ Jan 29 at 8:21
feedback

4 Answers

up vote 1 down vote accepted

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.

link|improve this answer
List can use for 8-puzzle problem?? – zahraTZ Jan 29 at 8:18
Of course! You can use a list of list if you want a 2D list. – FlopCoder Jan 29 at 8:30
-1. The standard Prolog way to have (possibly length-limited, possibly un-updatable) arrays is with arg/3 predicate, which allows direct indexing. Bratko gives amazing code for the "8-puzzle" (which I take to mean 8-queens puzzle) using this technique, and the key there is that the value at a given index can not be changed after it was first set. – Will Ness Feb 23 at 20:24
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.

link|improve this answer
1  
I think this is a much closer equivalent to arrays in Prolog than the accepted answer of linked lists. – danr Jan 29 at 13:13
not even setarg but a simple and standard arg will do - is much better actually - for an "8-puzzle problem". The key is that it's not updatable. (seen it in Bratko) – Will Ness Feb 23 at 20:21
feedback

Yap Prolog has experimental support for arrays

See

http://www.dcc.fc.up.pt/~vsc/Yap/documentation.html#Arrays

link|improve this answer
feedback

The stadard Prolog way of having (possibly limited in length, non-mutable) arrays is with arg/3 predicate:

11 ?- length(X,4), A =.. [g|X], arg(1,A,a).

X = [a, _G590, _G593, _G596]
A = g(a, _G590, _G593, _G596) 

Yes

12 ?- length(X,4), A =.. [g|X], arg(1,A,a), arg(3,A,c), arg(2,A,b), arg(1,A,d).

No
13 ?- length(X,4), A =.. [g|X], arg(1,A,a), arg(3,A,c), arg(2,A,b), arg(4,A,d).

X = [a, b, c, d]
A = g(a, b, c, d) 

Yes

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 O(log(n)) access time.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.