I know Octave was designed mostly for numerical computation, so the closer I can get to primitives for implementing cyclic lists and binary trees are "cell arrays". However, it seems that I can't create a self-referencing cell array:
octave:1> a={1,2}
a =
{
[1,1] = 1
[1,2] = 2
}
octave:2> a{1}=a
a =
{
[1,1] =
{
[1,1] = 1
[1,2] = 2
}
[1,2] = 2
}
So, the old value of a was copied and stored in the new cell array. I'd like to actually "make position 2 to point to the cell array itself".
Is that possible at all?
Trying to build a cell whose initial values already reference itself:
octave:3> b={1,b}
error: `b' undefined near line 3 column 6
error: evaluating argument list element number 2
If this is not possible, then I can still write binary search trees, but I can't use linked list representation for graphs or easily and cleanly create cyclic lists...
Is there any other simple way to build these structures in Octave?
Thank you!