y.mazari (Yacine Mazari)
- Login: y.mazari
- Email: y.mazari@gmail.com
- Registered on: 02/23/2015
- Last sign in: 02/23/2015
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
02/23/2015
-
03:52 AM Ruby Bug #10888 (Closed): DFS recursive implementation aborted
- Hello,
I am trying to implement DFS algorithm recursively with a graph containing more than 5million edges:
`def dfs(directed_graph, vertex)
self.marked[vertex] = true
directed_graph.adj[vertex].each {|w| dfs(directed_graph...