Sha256: 55c816097088c04cb31256430783123322bb554d9fd3fc3a4922a6b7c5fa9f4b

Contents?: true

Size: 1.07 KB

Versions: 29

Compression:

Stored size: 1.07 KB

Contents

Reparent a graph on a selected node.

# Tree Reparenting

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

29 entries across 29 versions & 1 rubygems

Version Path
trackler-2.2.1.68 problem-specifications/exercises/pov/description.md
trackler-2.2.1.67 problem-specifications/exercises/pov/description.md
trackler-2.2.1.66 problem-specifications/exercises/pov/description.md
trackler-2.2.1.65 problem-specifications/exercises/pov/description.md
trackler-2.2.1.64 problem-specifications/exercises/pov/description.md
trackler-2.2.1.63 problem-specifications/exercises/pov/description.md
trackler-2.2.1.62 problem-specifications/exercises/pov/description.md
trackler-2.2.1.61 problem-specifications/exercises/pov/description.md
trackler-2.2.1.60 problem-specifications/exercises/pov/description.md
trackler-2.2.1.59 problem-specifications/exercises/pov/description.md
trackler-2.2.1.58 problem-specifications/exercises/pov/description.md
trackler-2.2.1.57 problem-specifications/exercises/pov/description.md
trackler-2.2.1.56 problem-specifications/exercises/pov/description.md
trackler-2.2.1.55 problem-specifications/exercises/pov/description.md
trackler-2.2.1.54 problem-specifications/exercises/pov/description.md
trackler-2.2.1.53 problem-specifications/exercises/pov/description.md
trackler-2.2.1.52 problem-specifications/exercises/pov/description.md
trackler-2.2.1.51 problem-specifications/exercises/pov/description.md
trackler-2.2.1.50 problem-specifications/exercises/pov/description.md
trackler-2.2.1.49 problem-specifications/exercises/pov/description.md