Skip to main content
. 2017 Jul 25;17(8):1699. doi: 10.3390/s17081699
Algorithm 2
Select_DP(Path_List)
  {
    for i=1 to Path_List.Length1
    {
Path1=Path_List[i]
     for j=i+1 to Path_List.Length
     {
Path2=Path_List[j]
       if (CommonNode(Path1,Path2)==0)
         return Path1,Path2
     }
    }
  }