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)
TypeError: list indices must be integers or slices, not type
I'm implementing a breadth-first search algorithm in Python using adjacency matrices.
By some reason, I'm getting an error I don't why it's appearing.
My code is the next:
import numpy as np
# Matrix...
Ephraim
Votes: 0
Answers: 1
DFS like algorithm to find single source shortest path
I know DFS is not good choice to find shortest path from a source and BFS or dynamic programming solutions are better but i'm just interested in hypothetical situation of speed of particular algorithm...
Bogdan
Votes: 0
Answers: 0
Searching for a minimum cycle in a graph containing a set of nodes
If i have an undirected weighted graph G = (V, e) and a set of nodes P, how do i find the minimum cycle containing all the nodes in P?
I have a large graph G and a set of nodes P based on user input. ...
Eric Eldridge
Votes: 0
Answers: 2
Given a disconnected graph, find the minimum operations to rearrange the vertices such that the graph becomes connected
I'm working on a graph theory problem with a given disconnected unweighted, undirected graph (given an edge list). The following operation can be made on the graph:
A set of edges represented by two v...
Yael R
Votes: 0
Answers: 1