changeset 1471 | 11a13908b510 |
parent 1457 | be025fc1b13d |
child 1546 | 3fcb8ae9cea1 |
1:12811c891d14 | 2:1c08110fdd3b |
---|---|
36 |
36 |
37 class ListGraphBase { |
37 class ListGraphBase { |
38 |
38 |
39 protected: |
39 protected: |
40 struct NodeT { |
40 struct NodeT { |
41 int first_in,first_out; |
41 int first_in, first_out; |
42 int prev, next; |
42 int prev, next; |
43 }; |
43 }; |
44 |
44 |
45 struct EdgeT { |
45 struct EdgeT { |
46 int target, source; |
46 int target, source; |