python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Boost Graph Library: Deleting an edge while using an iterator
Currently I am trying to implement a Girvan Newman Algorithm for a class project using boost graph library in c++.
At the moment, edges and vertices are being added fine, but I am having an issue remo...

Nicole Sood
Votes: 0
Answers: 1
Find all Cycles in the Directed Graph including back edges
Given a graph below, find all the possible path from vertex 1 to come back to 1 including back edges.
Result:
[1,2,3,2,1]
[1,2,1]
[1,2,3,1]
I tried using DFS able to get only...
Arundhathi D
Votes: 0
Answers: 1
Counting 4 and 6-cycles in bipartite R igraph
I want to count the number of four-cycles and the number of six-cycles in a bipartite igraph in R. Adapting the code in r igraph find all cycles, I've come up with this solution:
> set.seed(1)
>...
Zachary
Votes: 0
Answers: 1
Calculate Total fun from 4 cities . Interview Question DSA round
Given there are cities , and each city has a fun factor associated with it . There is a bidirectional path between cities . Calculate the max total fun by choosing only 4 cities and show the list of c...
darth_vader
Votes: 0
Answers: 0