Sha256: 4520f43cd129091ecd79618c85689070a2c346cf2e1c7e4c594f83cf662348b7

Contents?: true

Size: 1.64 KB

Versions: 11

Compression:

Stored size: 1.64 KB

Contents

# Pov

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:

```
    +------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:

```
        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.

### Submitting Exercises

Note that, when trying to submit an exercise, make sure you're exercise file you're submitting is in the `exercism/csharp/<exerciseName>` directory.

For example, if you're submitting `bob.cs` for the Bob exercise, the submit command would be something like `exercism submit <path_to_exercism_dir>/csharp/bob/bob.cs`.
## Source

Adaptation of exercise from 4clojure [https://www.4clojure.com/](https://www.4clojure.com/)

## Submitting Incomplete Solutions
It's possible to submit an incomplete solution so you can see how others have completed the exercise.

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
trackler-2.2.1.6 tracks/csharp/exercises/pov/README.md
trackler-2.2.1.5 tracks/csharp/exercises/pov/README.md
trackler-2.2.1.4 tracks/csharp/exercises/pov/README.md
trackler-2.2.1.3 tracks/csharp/exercises/pov/README.md
trackler-2.2.1.2 tracks/csharp/exercises/pov/README.md
trackler-2.2.1.1 tracks/csharp/exercises/pov/README.md
trackler-2.2.1.0 tracks/csharp/exercises/pov/README.md
trackler-2.2.0.6 tracks/csharp/exercises/pov/README.md
trackler-2.2.0.5 tracks/csharp/exercises/pov/README.md
trackler-2.2.0.4 tracks/csharp/exercises/pov/README.md
trackler-2.2.0.3 tracks/csharp/exercises/pov/README.md