📌  相关文章
📜  加权图中的最短路径,其中边的权重为 1 或 2(1)

📅  最后修改于: 2023-12-03 15:36:59.284000             🧑  作者: Mango

加权图中的最短路径

在计算机科学中,加权图是一个图,其中每条边都带有一个数值,该数值称为边的权重。加权图中的最短路径问题是在加权图中找到一个最短路径,使其边的权重总和最小化。

解决方法
Dijkstra算法

Dijkstra算法是解决加权图中最短路径问题的一种常见算法。该算法基于贪心策略,每次选取当前路径下最短的未访问节点,并通过更新邻居节点的距离来确定最短路径。

Bellman-Ford算法

Bellman-Ford算法是解决加权图中最短路径问题的一种算法。该算法使用动态编程技术,在每次迭代中计算所有节点的最短路径,并逐步缩小最短路径的范围,直到找到最终的最短路径。

实现语言

加权图中最短路径问题的解决方法可以使用多种编程语言进行实现,如Java、Python、C++等。

Java示例

以下是一个使用Java语言实现Dijkstra算法解决加权图中最短路径问题的示例程序片段:

import java.util.*; 

class Graph { 
    private int V; //图中的节点数
    private List<List<Node>> adj; //节点列表
  
    Graph(int V) { 
        this.V = V; 
        adj = new ArrayList<>(V); 
  
        for (int i = 0; i < V; i++) 
            adj.add(new ArrayList<>()); 
    } 
  
    void addEdge(int u, int v, int w) { 
        adj.get(u).add(new Node(v, w)); 
        adj.get(v).add(new Node(u, w)); 
    } 
  
    void shortestPath(int src) { 
        PriorityQueue<Node> pq = new PriorityQueue<>(V, new Node()); 
        List<Integer> dist = new ArrayList<>(Collections.nCopies(V, Integer.MAX_VALUE)); 
        pq.add(new Node(src, 0)); 
        dist.set(src, 0); 
  
        while (!pq.isEmpty()) { 
            int u = pq.remove().node; 
  
            for (Node neighbor : adj.get(u)) { 
                int v = neighbor.node; 
                int weight = neighbor.cost; 
                int distanceThroughU = dist.get(u) + weight; 
                if (distanceThroughU < dist.get(v)) { 
                    dist.set(v, distanceThroughU); 
                    pq.add(new Node(v, dist.get(v))); 
                } 
            } 
        } 
  
        System.out.println("Vertex   Distance from Source"); 
        for (int i = 0; i < V; i++) 
            System.out.println(i + "\t\t" + dist.get(i)); 
    } 
  
    static class Node implements Comparator<Node> { 
        private int node; 
        private int cost; 
  
        Node() { 
        } 
  
        Node(int node, int cost) { 
            this.node = node; 
            this.cost = cost; 
        } 
  
        @Override
        public int compare(Node node1, Node node2) { 
            return Integer.compare(node1.cost, node2.cost); 
        } 
    } 
}
Python示例

以下是一个使用Python语言实现Bellman-Ford算法解决加权图中最短路径问题的示例程序片段:

class BellmanFord:
    def __init__(self, V):
        self.V = V
        self.graph = []

    def add_edge(self, u, v, w):
        self.graph.append([u, v, w])

    def shortest_path(self, src):
        dist = [float("Inf")] * self.V
        dist[src] = 0

        for i in range(self.V - 1):
            for u, v, w in self.graph:
                if dist[u] != float("Inf") and dist[u] + w < dist[v]:
                    dist[v] = dist[u] + w

        for u, v, w in self.graph:
            if dist[u] != float("Inf") and dist[u] + w < dist[v]:
                print("Graph contains negative weight cycle")
                return

        print("Vertex   Distance from Source")
        for i in range(self.V):
            print("{0}\t\t{1}".format(i, dist[i]))
C++示例

以下是一个使用C++语言实现Dijkstra算法解决加权图中最短路径问题的示例程序片段:

#include <iostream>
#include <queue>
#include <vector>
#include <functional>
#include <climits>
using namespace std;
 
typedef pair<int, int> iPair;
 
class Graph
{
    int V;
    vector< pair<int, int> >* adj;

public:
    Graph(int V);
    void add_edge(int u, int v, int w);
    void shortest_path(int src);
};
 
Graph::Graph(int V)
{
    this->V = V;
    adj = new vector<iPair> [V];
}
 
void Graph::add_edge(int u, int v, int w)
{
    adj[u].push_back(make_pair(v, w));
    adj[v].push_back(make_pair(u, w));
}
 
void Graph::shortest_path(int src)
{
    priority_queue< iPair, vector <iPair> , greater<iPair> > pq;
    vector<int> dist(V, INT_MAX);
 
    pq.push(make_pair(0, src));
    dist[src] = 0;
 
    while (!pq.empty())
    {
        int u = pq.top().second;
        pq.pop();
 
        for (auto neighbor : adj[u])
        {
            int v = neighbor.first;
            int weight = neighbor.second;
 
            if (dist[u] != INT_MAX && dist[u]+weight < dist[v])
            {
                dist[v] = dist[u] + weight;
                pq.push(make_pair(dist[v], v));
            }
        }
    }
 
    cout << "Vertex   Distance from Source" << endl;
    for (int i = 0; i < V; ++i)
        cout << i << "\t\t" << dist[i] << endl;
}
结论

加权图中的最短路径问题可以使用多种算法和编程语言进行解决,其中Dijkstra算法和Bellman-Ford算法是常见且有效的解决方法。程序员可以在实际开发中根据具体问题的特点,选取合适的算法和编程语言进行实现。