실행 실패 (제출 코드 컴파일 에러)
Main.cpp:13:10: error: no matching function for call to ‘Tree::Tree()’ 13 | Tree T[26]; | ^ Main.cpp:10:9: note: candidate: ‘Tree::Tree(char, char, char)’ 10 | Tree(char node, char left, char right) : node(node), left(left), right(right) {}; | ^~~~ Main.cpp:10:9: note: candidate expects 3 arguments, 0 provided Main.cpp:6:8: note: candidate: ‘constexpr Tree::Tree(const Tree&)’ 6 | struct Tree { | ^~~~ Main.cpp:6:8: note: candidate expects 1 argument, 0 provided Main.cpp:6:8: note: candidate: ‘constexpr Tree::Tree(Tree&&)’ Main.cpp:6:8: note: candidate expects 1 argument, 0 provided
정답 개수:
-
틀린 개수:
-
실행 실패 개수:
-
반례를 발견하지 못했습니다.