Top "Cyclic" questions

How to resolve cyclic dependency in Maven?

How can we resolve a Maven cyclic dependency? Suppose A is the parent project and B and C are child …

maven dependencies cyclic
How to detect if a directed graph is cyclic?

How can we detect if a directed graph is cyclic? I thought using breadth first search, but I'm not sure. …

graph breadth-first-search cyclic
Determining whether or not a directed or undirected graph is a tree

I would like to know of a fast algorithm to determine if a directed or undirected graph is a tree. …

algorithm graph tree cyclic
Haskell how to generate this infinite list?

I saw this code to generate Fibonacci numbers. fibs = 1:1:(zipWith (+) fibs (tail fibs)) Can a similar styled code be written …

list haskell infinite cyclic
How to remove cycles in an unweighted directed graph, such that the number of edges is maximised?

Let G be an unweighted directed graph containing cycles. I'm looking for an algorithm which finds/creates all acyclic graphs …

algorithm graph graph-theory directed-graph cyclic
F(n) = F(n-1) - F(n-2)

I came across this sequence in a programming contest F(n)= F(n-1)-F(n-2); Given F0 and F1 find …

math sequence discrete-mathematics cyclic
React Native JSON.stringify cannot serialize cyclical structures

We're building a RN app (RN0.37), and we're running into an issue where when the app is run, we get …

ios json react-native react-native-router-flux cyclic
What is cyclic and acyclic communication?

So I've already searched if there was a question like this posted before, but I wasn't able to find the …

variables drive plc cyclic
How do find the longest path in a cyclic Graph between two nodes?

I already solved most the questions posted here, all but the longest path one. I've read the Wikipedia article about …

c graph cyclic longest-path
Finding all cycles in a directed graph using recursive backtracking

I am working on finding cycles in directed graph using recursive backtracking. There is a suggested pseudocode for this here, …

java algorithm recursion directed-graph cyclic