爲了讓這也是加權重圖,我以後的事數據結構,重圖
#include <iostream>
#include <vector>
using namespace std;
struct maps
{
vector<char> weight(10); //to store weight of self-loops and multi-edges
};
int main()
{
maps m1[101][101], m2[101][101];
return 0;
}
,但我得到以下錯誤:
error: expected identifier before numeric constant
error: expected ‘,’ or ‘...’ before numeric constant
我該如何解決這個問題?
'vector weight;'。不要在'struct'定義中啓動成員。它們應該在構造函數中或之後啓動。 –
2012-02-26 11:12:38
@AdeYU:我不明白 – 2012-02-26 11:25:28