Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

BFS algorithm in Java #80

Merged
merged 1 commit into from
Oct 3, 2017
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
105 changes: 105 additions & 0 deletions graph/bfs_dfs/bfs/BFS.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@
/**
* Input file example:
*
*
* 8
* INF 1 1 INF INF INF INF INF
* 1 INF INF 1 1 INF INF INF
* 1 INF INF INF INF 1 1 INF
* INF 1 INF INF INF INF INF INF
* INF 1 INF INF INF INF INF 1
* INF INF 1 INF INF INF INF INF
* INF INF 1 INF INF INF INF INF
* INF INF INF INF 1 INF INF INF
* 1
*
* First line is number of elements in graph
* Next n-lines is graph
* Last line is begin point
*
* Output file:
* 1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8
*
*/

import java.io.BufferedWriter;
import java.io.FileInputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.util.*;

class BFS {

private static final String INPUT_FILE_PATH = "input.txt";

private static final String OUTPUT_FILE_PATH = "output.txt";

private static final int INF = Integer.MAX_VALUE / 2;

private static int begin;

public static void main(String[] args) {
int[][] matrix = readMatrixFromFile();
List<Integer> way = bfs(matrix);
printSolution(way);
}

private static int[][] readMatrixFromFile() {
int[][] matrix = null;

try (Scanner scanner = new Scanner(new FileInputStream(INPUT_FILE_PATH))) {
int matrixSize = Integer.parseInt(scanner.nextLine());
matrix = new int[matrixSize][matrixSize];

for (int row = 0; row < matrixSize; row++) {
String[] numbers = scanner.nextLine().split(" ");
for (int col = 0; col < matrixSize; col++) {
if (numbers[col].equals("INF")) {
matrix[row][col] = INF;
} else {
matrix[row][col] = Integer.parseInt(numbers[col]);
}
}
}

begin = scanner.nextInt() - 1;
} catch (IOException e) {
e.printStackTrace();
}

return matrix;
}

private static List<Integer> bfs(int[][] matrix) {
boolean[] used = new boolean[matrix.length];
List<Integer> way = new ArrayList<>();
Queue<Integer> queue = new LinkedList<>();
queue.offer(begin);

while (!queue.isEmpty()) {
int v = queue.poll();
used[v] = true;
way.add(v + 1);

for (int nv = 0; nv < matrix.length; nv++) {
if (!used[nv] && matrix[v][nv] != INF) {
queue.offer(nv);
}
}
}
return way;
}

private static void printSolution(List<Integer> way) {
try (BufferedWriter writer = new BufferedWriter(new FileWriter(OUTPUT_FILE_PATH))) {
writer.write(Integer.toString(way.get(0)));

for (int i = 1; i < way.size(); i++) {
writer.write(" -> " + way.get(i));
}
} catch (IOException e) {
e.printStackTrace();
}
}

}