Sha256: 1d02f35a9cf17971a6c7c8df65758eb4b76dab1e0f96f4708242aab6fe131f17

Contents?: true

Size: 1.05 KB

Versions: 110

Compression:

Stored size: 1.05 KB

Contents

Reparent a graph on a selected node.

This exercise is all about re-orientating a graph to see things from a different
point of view. For example family trees are usually presented from the
ancestor's perspective:

```text
    +------0------+
    |      |      |
  +-1-+  +-2-+  +-3-+
  |   |  |   |  |   |
  4   5  6   7  8   9
```

But the same information can be presented from the perspective of any other node
in the graph, by pulling it up to the root and dragging its relationships along
with it. So the same graph from 6's perspective would look like:

```text
        6
        |
  +-----2-----+
  |           |
  7     +-----0-----+
        |           |
      +-1-+       +-3-+
      |   |       |   |
      4   5       8   9
```

This lets us more simply describe the paths between two nodes. So for example
the path from 6-9 (which in the first graph goes up to the root and then down to
a different leaf node) can be seen to follow the path 6-2-0-3-9

This exercise involves taking an input graph and re-orientating it from the point
of view of one of the nodes.

Version data entries

110 entries across 110 versions & 1 rubygems

Version Path
trackler-2.2.1.98 problem-specifications/exercises/pov/description.md
trackler-2.2.1.97 problem-specifications/exercises/pov/description.md
trackler-2.2.1.96 problem-specifications/exercises/pov/description.md
trackler-2.2.1.95 problem-specifications/exercises/pov/description.md
trackler-2.2.1.94 problem-specifications/exercises/pov/description.md
trackler-2.2.1.93 problem-specifications/exercises/pov/description.md
trackler-2.2.1.92 problem-specifications/exercises/pov/description.md
trackler-2.2.1.91 problem-specifications/exercises/pov/description.md
trackler-2.2.1.90 problem-specifications/exercises/pov/description.md
trackler-2.2.1.89 problem-specifications/exercises/pov/description.md
trackler-2.2.1.88 problem-specifications/exercises/pov/description.md
trackler-2.2.1.87 problem-specifications/exercises/pov/description.md
trackler-2.2.1.86 problem-specifications/exercises/pov/description.md
trackler-2.2.1.85 problem-specifications/exercises/pov/description.md
trackler-2.2.1.84 problem-specifications/exercises/pov/description.md
trackler-2.2.1.83 problem-specifications/exercises/pov/description.md
trackler-2.2.1.82 problem-specifications/exercises/pov/description.md
trackler-2.2.1.81 problem-specifications/exercises/pov/description.md
trackler-2.2.1.80 problem-specifications/exercises/pov/description.md
trackler-2.2.1.79 problem-specifications/exercises/pov/description.md