C++で次のような互いに依存関係にある構造体を宣言するにはどうしたら良いでしょうか?
現在ですと
'vertex' does not name a type vertex dst;
というエラーが発生します。
C++
1struct edge { 2 vertex dst; 3 int cnt; 4 int id; 5 int col; 6}; 7 8struct vertex { 9 std::vector<edge> edges; 10};
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。