We are working on a small school project to implement a algorithm in java with Floyd-Warshall (we can't use another one).
The algorithm is working well, and we use a cost Array as input for the Floyd-Warshall Algo.
The teacher has 5 file to check, we passed 4 but the 5th is an array with 15 000 vertex that's mean an array of 15 000 * 15 000 integers.
Java refuse to use it because of the memory. Do u have any idea how to pass this ?
Thx