distance(n, std::numeric_limits::max()); "行的含义是什么?-6ren"> distance(n, std::numeric_limits::max()); "行的含义是什么?-实际上我必须找到从源顶点到所有其他顶点的最短路径。为此,我获得了下面给出的代码模板。我想实现“Bellman–Ford algorithm”。 #include #include #include-6ren">
gpt4 book ai didi

c++ - "vector distance(n, std::numeric_limits::max()); "行的含义是什么?

转载 作者:行者123 更新时间:2023-12-03 12:51:58 24 4
gpt4 key购买 nike

实际上我必须找到从源顶点到所有其他顶点的最短路径。为此,我获得了下面给出的代码模板。我想实现“Bellman–Ford algorithm”。

#include <iostream>
#include <limits>
#include <vector>
#include <queue>

using std::vector;
using std::queue;
using std::pair;
using std::priority_queue;

void shortest_paths(vector<vector<int> > &adj, vector<vector<int> > &cost, int s, vector<long long> &distance, vector<int> &reachable, vector<int> &shortest) {
//write your code here
}

int main() {
int n, m, s;
std::cin >> n >> m;
vector<vector<int> > adj(n, vector<int>());
vector<vector<int> > cost(n, vector<int>());
for (int i = 0; i < m; i++) {
int x, y, w;
std::cin >> x >> y >> w;
adj[x - 1].push_back(y - 1);
cost[x - 1].push_back(w);
}
std::cin >> s;
s--;
vector<long long> distance(n, std::numeric_limits<long long>::max());
vector<int> reachable(n, 0);
vector<int> shortest(n, 1);
shortest_paths(adj, cost, s, distance, reachable, shortest);
for (int i = 0; i < n; i++) {
if (!reachable[i]) {
std::cout << "*\n";
} else if (!shortest[i]) {
std::cout << "-\n";
} else {
std::cout << distance[i] << "\n";
}
}
}

我无法理解“vector<long long> distance(n, std::numeric_limits<long long>::max());”行的含义。还有-“std::numeric_limits<long long>::max()”是什么?谁能解释一下吗?

最佳答案

vector<long long> - 变量的类型

distance - 变量名称

(n, std::numeric_limits<long long>::max()); - 构造函数参数

std::numeric_limits<long long>::max() -std::numeric_limits是一个需要类型参数的类(此处为 long long ),并且它具有静态函数,该函数返回专门用于该类型的值。在这种情况下,最大值为 long long

关于c++ - "vector<long long> distance(n, std::numeric_limits<long long>::max()); "行的含义是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61910159/

24 4 0