How to call a tree with a single branch?

1.6k Views Asked by At

How do you call a tree with only one branch (in other words, where every vertex has maximum one direct successor)?

1

There are 1 best solutions below

0
On

A connected graph with two vertices of degree one and the rest of degree two is called a path.

If you want to distinguish between successor and predecessor vertices, you can direct the edges all the same direction and obtain a directed path.