package com.northsmile.graph;
import java.util.ArrayList;
import java.util.Arrays;
/**
* Author:NorthSmile
* Create:2023/4/18 9:17
* 使用邻接矩阵表示图(无向图)
*/
public class Graph {
// 存储边及其权值
int[][] edges;
// 存储顶点
ArrayList<String> vertexes;
// 记录边的数目
int edgeNums;
public Graph(int n){
edges=new int[n][n];
vertexes=new ArrayList<>(n);
edgeNums=0;
}
/**
* 插入顶点
* @param vertex
*/
public void insertVertex(String vertex){
vertexes.add(vertex);
}
/**
* 插入边
* @param v1 边的一个顶点对应下标
* @param v2 边的另一个顶点对应下标
* @param w 边对应权值,默认为1
*/
public void insertEdge(int v1,int v2,int w){
edges[v1][v2]=w;
edges[v2][v1]=w;
edgeNums++;
}
/**
* 获取顶点数量
* @return
*/
public int getVertexesNum(){
return vertexes.size();
}
/**
* 获取边的数目
* @return
*/
public int getEdgesNum(){
return edgeNums;
}
/**
* 获取指定下标对应的顶点的值
* @param v
* @return
*/
public String getValByIndex(int v){
return vertexes.get(v);
}
/**
* 获取指定边的权值
* @param v1
* @param v2
* @return
*/
public int getWeightOfEdge(int v1,int v2){
return edges[v1][v2];
}
/**
* 显示表示图的邻接矩阵
*/
public void showGraph(){
for (int[] edge:edges){
System.out.println(Arrays.toString(edge));
}
}
}
package com.northsmile.graph;
/**
* Author:NorthSmile
* Create:2023/4/18 9:18
*/
public class GraphDemo {
public static void main(String[] args) {
int n=5;
String[] vertexes={"A","B","C","D","E"};
Graph graph = new Graph(n);
// 插入顶点
for (String vertex:vertexes){
graph.insertVertex(vertex);
}
// 插入边
graph.insertEdge(0,1,1);
graph.insertEdge(0,2,1);
graph.insertEdge(1,2,1);
graph.insertEdge(1,3,1);
graph.insertEdge(1,4,1);
graph.showGraph();
}
}
package com.northsmile.graph;
import java.util.ArrayList;
import java.util.HashMap;
/**
* Author:NorthSmile
* Create:2023/4/18 11:12
* 使用邻接表表示图(有向图)
*/
public class GraphByAdjacenceList {
// 邻接表
HashMap<String,Vertex> list;
int vertexNums;
int edgeNums;
public GraphByAdjacenceList(int n){
list=new HashMap<>();
vertexNums=n;
edgeNums=0;
}
/**
* 插入顶点
* @param vertex
*/
public void insertVertex(String vertex){
list.put(vertex,new Vertex(vertexNums));
}
/**
* 插入边
* @param v 顶点
* @param w 邻接点
*/
public void insertEdge(String v,String w){
Vertex vertex = list.get(v);
vertex.table.add(w);
edgeNums++;
}
/**
* 获取顶点数量
* @return
*/
public int getVertexesNum(){
return list.size();
}
/**
* 获取边的数目
* @return
*/
public int getEdgesNum(){
return edgeNums;
}
/**
* 显示表示图的邻接表
*/
public void showGraph(){
for (String vertex:list.keySet()){
System.out.println(vertex+":"+list.get(vertex).table);
}
}
/**
* 顶点类
*/
class Vertex{
ArrayList<String> table;
public Vertex(int n){
table=new ArrayList<>(n/2);
}
}
}
package com.northsmile.graph;
/**
* Author:NorthSmile
* Create:2023/4/18 9:18
*/
public class GraphDemo {
public static void main(String[] args) {
// 2.邻接表
int n=5;
String[] vertexes={"A","B","C","D","E"};
GraphByAdjacenceList graph = new GraphByAdjacenceList(n);
// 插入顶点
for (String vertex:vertexes){
graph.insertVertex(vertex);
}
// 插入边
graph.insertEdge("A","B");
graph.insertEdge("A","C");
graph.insertEdge("B","C");
graph.insertEdge("B","D");
graph.insertEdge("B","E");
graph.showGraph();
}
}
/**
* 深度优先遍历:类似树的先序遍历
* @param v 以当前点开始遍历
* @param visited 标记节点是否访问过
*/
public void dfs(int v,boolean[] visited){
System.out.print(vertexes.get(v)+"->");
// 遍历当前顶点的邻接点
for (int i=0;i<vertexes.size();i++){
// 说明v、i之间存在边
if (edges[v][i]!=0&&!visited[i]){
visited[i]=true;
dfs(i,visited);
}
}
}
public void dfs(){
// 标记顶点是否已经访问过
boolean[] visited=new boolean[vertexes.size()];
// 以每个顶点开始进行DFS,实现图的完整遍历
for (int i=0;i<vertexes.size();i++){
if (!visited[i]){
visited[i]=true;
dfs(i,visited);
}
}
}
/**
* 广度优先遍历:类似树的层次遍历
* @param v 以当前点开始遍历
* @param visited 标记节点是否访问过
*/
public void bfs(int v,boolean[] visited){
ArrayDeque<Integer> queue=new ArrayDeque<>();
queue.offer(v);
visited[v]=true;
while (!queue.isEmpty()){
Integer cur = queue.poll();
System.out.print(vertexes.get(cur)+"->");
// 遍历当前顶点的邻接点
for (int i=0;i<vertexes.size();i++){
// 说明v、i之间存在边
if (edges[cur][i]!=0&&!visited[i]){
visited[i]=true;
queue.offer(i);
}
}
}
}
public void bfs(){
// 标记顶点是否已经访问过
boolean[] visited=new boolean[vertexes.size()];
// 以每个顶点开始进行BFS,实现图的完整遍历
for (int i=0;i<vertexes.size();i++){
if (!visited[i]){
bfs(i,visited);
}
}
}
资料来源:尚硅谷