- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
几天前,在我的笔记本电脑上运行的脚本与在另一个 Linux 机器上运行的脚本运行方式不同(我运行的脚本彼此相同)。我的猜测是我的编译器遗漏了一些东西。我不知道问题是什么。
运行 g++ -v 后,这是我得到的结果:
Apple LLVM version 7.0.0 (clang-700.1.76)
Target: x86_64-apple-darwin14.5.0
Thread model: posix
在另一个 Linux 机器上运行 g++ -v 后,我得到:
Using built-in specs.
COLLECT_GCC=g++
COLLECT_LTO_WRAPPER=/usr/libexec/gcc/x86_64-redhat-linux/4.8.3/lto-wrapper
Target: x86_64-redhat-linux
Configured with: ../configure --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-bugurl=http://bugzilla.redhat.com/bugzilla --enable-bootstrap --enable-shared --enable-threads=posix --enable-checking=release --with-system-zlib --enable-__cxa_atexit --disable-libunwind-exceptions --enable-gnu-unique-object --enable-linker-build-id --with-linker-hash-style=gnu --enable-languages=c,c++,objc,obj-c++,java,fortran,ada,go,lto --enable-plugin --enable-initfini-array --disable-libgcj --with-isl=/builddir/build/BUILD/gcc-4.8.3-20140911/obj-x86_64-redhat-linux/isl-install --with-cloog=/builddir/build/BUILD/gcc-4.8.3-20140911/obj-x86_64-redhat-linux/cloog-install --enable-gnu-indirect-function --with-tune=generic --with-arch_32=x86-64 --build=x86_64-redhat-linux
Thread model: posix
gcc version 4.8.3 20140911 (Red Hat 4.8.3-9) (GCC)
以下脚本是计算从一个源顶点到所有顶点的最短路径的脚本,在本例中为顶点 1。此脚本的输出列出了每个顶点及其从源到它的最短距离。有问题的输入文件也在下面列出。这是我的脚本:
#include <iostream>
#include <sstream>
#include <fstream>
#include <list>
#include <limits>
using namespace std;
struct Node{
int dist;
int v;
bool operator==(const Node& a){
return dist == a.dist;
}
bool operator!=(const Node& a){
return (!(dist == a.dist));
}
bool operator<(const Node& a){
return dist < a.dist;
}
bool operator>(const Node& a){
return a.dist < dist;
}
int operator+(const Node& a){
return a.dist+dist;
}
};
struct cheapHeap{
int curSize;
Node * minHeap;
};
class DijkstraSolution{
private:
int size;
int sourceV;
list<Node> *container; //this is the container to hold input data
int *results; //this is the array to hold final results
cheapHeap ch; //this is the array that holds each dist looked at
public:
DijkstraSolution(string fname, int inSourceV, int inSize): size(inSize), sourceV(inSourceV){
//read the file and initialize the list<Node> container
container = new list<Node>[size];
ifstream infile;
infile.open(fname.c_str());
string line = "";
if (infile){
while (getline(infile, line)){
istringstream iss(line);
int vertex;
int v;
int dist;
iss >> vertex;
while(iss >> v >> dist){
Node edges;
edges.dist = dist;
edges.v = v;
container[vertex].push_back(edges);
}
}
}
infile.close();
//initialization of results and minHeap array
int maxVal = numeric_limits<int>::max();
results = new int[size];
ch.curSize = size-1;
ch.minHeap = new Node[size];
for (int i = 0; i < size; i++){
results[i] = maxVal;
ch.minHeap[i].dist = maxVal;
}
results[sourceV] = 0;
ch.minHeap[sourceV].dist = 0;
ch.minHeap[sourceV].v = sourceV;
}
//find min of all nodes inserted into minHeap
Node findMin(){
Node minimum;
minimum.dist = numeric_limits<int>::max();
minimum.v = 0;
for (int i=1; i <= size; i++){
if ((ch.minHeap[i] < minimum) && (ch.minHeap[i].dist != -1)){
minimum = ch.minHeap[i];
}
}
ch.minHeap[minimum.v].dist = -1;
ch.curSize--;
return minimum;
}
//for every min that findMin() spits out, insert this min into the results array
int * dijkstra(){
while (ch.curSize != 0){
Node minimum = findMin();
results[minimum.v] = minimum.dist;
for (list<Node>::iterator it = container[minimum.v].begin(); it != container[minimum.v].end(); it++){
if ((*it)+minimum < ch.minHeap[(*it).v].dist){
Node inserted;
inserted.dist = *it + minimum;
inserted.v = (*it).v;
ch.minHeap[(*it).v] = inserted;
}
}
}
return results;
}
//this prints the contents from the file input
void printContainer(){
for (int i=1; i < size; i++){
cout << i << " ";
list<Node>::iterator iter;
for (iter = container[i].begin(); iter != container[i].end(); iter++){
cout << iter -> v << " " << iter -> dist << " ";
}
cout <<endl;
}
}
//this prints out the contents from the results array
void printResults(){
for (int i = 1; i < size; i++){
cout << i << " -> " << results[i] << endl;
}
}
};
int main(){
DijkstraSolution ds("pa5_test1.txt", 1, 9);
ds.dijkstra();
ds.printResults();
}
这是我的输入文件:
1 2 1 8 2
2 1 1 3 1
3 2 1 4 1
4 3 1 5 1
5 4 1 6 1
6 5 1 7 1
7 6 1 8 1
8 7 1 1 2
这是我从我的 Mac 获得的输出,这是不正确的:
1 -> 0
2 -> 2147483647
3 -> 2147483647
4 -> 2147483647
5 -> 2147483647
6 -> 2147483647
7 -> 2147483647
8 -> 2147483647
这是我从其他 Linux 机器获得的输出,这是正确的:
1 -> 0
2 -> 1
3 -> 2
4 -> 3
5 -> 4
6 -> 4
7 -> 3
8 -> 2
显然,我的编译器没有更新结果数组。显然,它将第一个条目更新为 0,然后就停止更新了。这真的很奇怪,因为我在不同的机器上运行了完全相同的代码并且结果与 Linux 机器相同,所以我猜这是我的编译器。令人沮丧的是我没有收到任何错误,所以我什至不知道从哪里开始寻找答案。另外,不确定这是否相关,但是当我启动 gdb 时,它不会调试作为类编写的脚本。它只调试具有 main 和函数的代码,当我编写实例化某个类的 main 函数时它会跳闸。如果我的编译器确实坏了,关于如何重建它有什么建议(婴儿步骤)吗?很抱歉这篇文章很长。
最佳答案
一个问题是:
for (int i=1; i <= size; i++){ // <-- Index goes out of bounds here
if ((ch.minHeap[i] < minimum) && (ch.minHeap[i].dist != -1)){
minimum = ch.minHeap[i];
您正在循环到 size
,但是 minHeap[size]
是越界访问。
关于c++ - 在 LLVM 和 gcc 中运行时的不同结果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34007164/
我有 table 像这样 -------------------------------------------- id size title priority
我的应用在不同的 Activity (4 个 Activity )中仅包含横幅广告。所以我的疑问是, 我可以对所有横幅广告使用一个广告单元 ID 吗? 或者 每个 Activity 使用不同的广告单元
我有任意(但统一)数字列表的任意列表。 (它们是 n 空间中 bin 的边界坐标,我想绘制其角,但这并不重要。)我想生成所有可能组合的列表。所以:[[1,2], [3,4],[5,6]] 产生 [[1
我刚刚在学校开始学习 Java,正在尝试自定义控件和图形。我目前正在研究图案锁,一开始一切都很好,但突然间它绘制不正确。我确实更改了一些代码,但是当我看到错误时,我立即将其更改回来(撤消,ftw),但
在获取 Distinct 的 Count 时,我在使用 Group By With Rollup 时遇到了一个小问题。 问题是 Rollup 摘要只是所有分组中 Distinct 值的总数,而不是所有
这不起作用: select count(distinct colA, colB) from mytable 我知道我可以通过双选来简单地解决这个问题。 select count(*) from (
这个问题在这里已经有了答案: JavaScript regex whitespace characters (5 个回答) 2年前关闭。 你能解释一下为什么我会得到 false比较 text ===
这个问题已经有答案了: 奥 git _a (56 个回答) 已关闭 9 年前。 我被要求用 Javascript 编写一个函数 sortByFoo 来正确响应此测试: // Does not cras
所以,我不得不说,SQL 是迄今为止我作为开发人员最薄弱的一面。也许我想要完成的事情很简单。我有这样的东西(这不是真正的模型,但为了使其易于理解而不浪费太多时间解释它,我想出了一个完全模仿我必须使用的
这个问题在这里已经有了答案: How does the "this" keyword work? (22 个回答) 3年前关闭。 简而言之:为什么在使用 Objects 时,直接调用的函数和通过引用传
这个问题在这里已经有了答案: 关闭 12 年前。 Possible Duplicate: what is the difference between (.) dot operator and (-
我真的不明白这里发生了什么但是: 当我这样做时: colorIndex += len - stopPos; for(int m = 0; m < len - stopPos; m++) { c
思考 MySQL 中的 Group By 函数的最佳方式是什么? 我正在编写一个 MySQL 查询,通过 ODBC 连接在 Excel 的数据透视表中提取数据,以便用户可以轻松访问数据。 例如,我有:
我想要的SQL是这样的: SELECT week_no, type, SELECT count(distinct user_id) FROM group WHERE pts > 0 FROM bas
商店表: +--+-------+--------+ |id|name |date | +--+-------+--------+ |1 |x |Ma
对于 chrome 和 ff,当涉及到可怕的 ie 时,这个脚本工作完美。有问题 function getY(oElement) { var curtop = 0; if (oElem
我现在无法提供代码,因为我目前正在脑海中研究这个想法并在互联网上四处乱逛。 我了解了进程间通信和使用共享内存在进程之间共享数据(特别是结构)。 但是,在对保存在不同 .c 文件中的程序使用 fork(
我想在用户集合中使用不同的功能。在 mongo shell 中,我可以像下面这样使用: db.users.distinct("name"); 其中名称是用于区分的集合字段。 同样我想要,在 C
List nastava_izvjestaj = new List(); var data_context = new DataEvidencijaDataContext();
我的 Rails 应用程序中有 Ransack 搜索和 Foundation,本地 css 渲染正常,而生产中的同一个应用程序有一个怪癖: 应用程序中的其他内容完全相同。 我在 Chrome 和 Sa
我是一名优秀的程序员,十分优秀!