I am trying to implement a depth first search in scilab, to find all paths between two nodes.
I am getting an error message: error 21 Invalid index
. I have tried to find a solution here and in some other places, and I could not find one.
My question: can anyone find the error in my code? Or alternatively, am I doing the method wrong and should I be doing it differently. My ultimate goal with this is to use this method to find all paths between two nodes in a graph of about 1800 nodes.
My code is:
function [x] = dfs(node)
if node==j then
//print path to file
[nrRows,nrCols]=size(path)
for counter=1:nrCols
mfprintf(o1,'%d ',path(1,counter))
end
mfprintf(o1,'\n')
else
visited(1,node)=1;
path=[path,node]
for nr=1:n
if v(node,nr)==1 then //node en nr zijn neighbours
if visited(1,nr)==0 then
[y]=dfs(nr)
end
visited(1,nr)=0
path(:,$)=[] //verwijder laatste element uit path
end
end //for nr
end
x=1
endfunction
And I am calling it like this:
n=4;
v=[ 0 1 1 0;
1 0 1 0;
1 1 0 1;
0 0 1 0];
i=1; //starting node
j=3; //end node
visited=zeros(1,n);
path=zeros(1,1);
o1 = mopen('pathsBetweenTwoNodes', 'w');
[a]=dfs(i);
Asides: I am new to stackoverflow. If I am doing something that is against the rules or customs please tell me and I will do my best to fix it now or in the future.
Thanks in advance for any advice. Paulien
Seems to be a scoping issue.
Overwrites the global variable with a
1
. To make sure this does not happen, declare it as a global inside the dfs function.