Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the difference between Cycle and circuit

I have confusion that what is the differnce between the two ?

Cycle and circuit so please make me sure by diagrams if possible.

what i have in mind is that the cycle is always in undirected graph the circuit is always a directed graph. please correct me if i am wrong ?

like image 704
Sss Avatar asked Feb 15 '23 04:02

Sss


2 Answers

A cycle is a closed path. A path is a walk with no repeated vertices. Circuits refer to the closed trails. Trails refer to a walk where no edge is repeated.

like image 186
user3943895 Avatar answered Apr 02 '23 01:04

user3943895


@blgt There is some difference , I found it finally.

The circuit is on directed graph and the cycle may be undirected graph. whereas the path can be differntiated by cycle and circuit by the point that path start from u vertex and may end at v vertex.(starting point and end point are not same) and it may even repeat the same vertex again but not the case with circuit. see this link for more information- http://www.esiee.fr/~coustyj/EnglishMorphoGraph/L3.pdf (i prefer to give the link in order to make it helpful for future refrence)

like image 43
Sss Avatar answered Apr 02 '23 00:04

Sss