我正在尝试学习C ++,并希望实现一些算法来查找图中的最小生成树。但是,我在编写界面时遇到了一些麻烦,我不知道哪里出错了。我收到两个错误:
错误:变量'Graph :: adjIterator it'具有初始化程序但不完整类型
错误:预期','或';'在'='标记之前
graph.h
#ifndef GRAPH_H
#define GRAPH_H
#include<vector>
struct Edge {
int v, w;
double weight;
Edge(int v_, int w_, double weight_ = 1) :
v(v_), w(w_), weight(weight_) {
}
};
class Graph {
private:
int Vcnt, Ecnt;
bool directedGraph;
struct Node {
int v;
Node* next;
Node(int v_, Node* next_) :
v(v_), next(next_) {
}
};
std::vector<Node*> adj; //this is a linked list !
public:
Graph(int V, bool diGraph = false) :
adj(V), Vcnt(V), Ecnt(0), directedGraph(diGraph) {
adj.assign(V, NULL);
}
int V() {
return Vcnt;
}
int E() {
return Ecnt;
}
bool directed() const {
return directedGraph;
}
void insert(Edge e) {
int v = e.v;
int w = e.w;
adj[v] = new Node(w, adj[v]);
if (!directedGraph)
adj[w] = new Node(v, adj[w]);
Ecnt++;
}
bool egde(int v, int w) const;
//void remove(Edge e);
class adjIterator;
friend class adjIterator;
};
graph.cpp
#include "graph.h"
class Graph::adjIterator {
private:
const Graph & G;
int v;
Node* t;
public:
adjIterator(const Graph& G_, int v_) :
G(G_), v(v_) {
t = 0;
}
int begin() {
t = G.adj[v];
return t ? t->v : -1;
}
int nxt() {
if (t)
t = t->next;
return t ? t->v : -1;
}
bool end() {
return t == 0;
}
};
的main.cpp
#include <iostream>
#include "graph.h"
int main() {
Graph G(2);
Edge e(0, 1);
G.insert(e);
for(Graph::adjIterator it(G,0) = it.begin(); it != it.end(); it.nxt()) {
//stuff
}
return 0;
}
提前感谢您的帮助。
答案 0 :(得分:2)
您已经在.cpp文件中定义了类'adjIterator',然后尝试从另一个.cpp文件中使用它,该文件只看到.h中的前向声明
此外,虽然这不是您的直接问题,但您的.h文件中有很多内容可能属于.cpp。
通常,您将所有声明放在.h中,并将所有实现放在.cpp。
中所以.h可能有:
class myClass {
public:
myClass();
void someMethod(int argument);
}
然后.cpp会有:
myClass::myClass()
{
//initialise stuff
}
void myClass::someMethod(int argument)
{
//do something clever
}