Advertisement
Guest User

New York Street Sweeper Paths

a guest
Dec 4th, 2015
196
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 0.64 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- children of root: all the vertices -->
  3. <!-- grandsons of root: possible next vertices in the path after parent -->
  4. <root>
  5.     <F>
  6.         <next  id="I" />
  7.         <next  id="E" />
  8.     </F>
  9.     <I>
  10.         <next  id="H" />
  11.     </I>
  12.     <H>
  13.         <next  id="G" />
  14.     </H>
  15.     <G>
  16.         <next  id="H" />
  17.         <next  id="D" />
  18.     </G>
  19.     <D>
  20.         <next  id="E" />
  21.         <next  id="A" />
  22.     </D>
  23.     <A>
  24.         <next  id="D" />
  25.         <next  id="B" />
  26.     </A>
  27.     <B>
  28.         <next  id="A" />
  29.         <next  id="E" />
  30.         <next  id="C" />
  31.     </B>
  32.     <C>
  33.         <next  id="B" />
  34.         <next  id="F" />
  35.     </C>
  36.     <E>
  37.         <next  id="B" />
  38.         <next  id="F" />
  39.         <next  id="H" />
  40.     </E>
  41. </root>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement