0_0_29615266_13674.cpp: In function 'void dfs(int, int, int)':
0_0_29615266_13674.cpp:33:55: error: reference to 'map' is ambiguous
if (xx <= 0 || yy <= 0 || xx > m || yy > n || map[xx][yy] == '*')
^
0_0_29615266_13674.cpp:10:6: note: candidates are: char map [110][110]
char map[110][110];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/map:61:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:80,
from 0_0_29615266_13674.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_map.h:96:11: note: template<class _Key, class _Tp, class _Compare, class _Alloc> class std::map
class map
^
0_0_29615266_13674.cpp:46:9: error: reference to 'map' is ambiguous
map[xx][yy] = '*'; //如果这里能走,就把这里变成不能走,然后再从这里开始递归,其实就是起到vis[][] 的作用,会用vis的话就不用追究了
^
0_0_29615266_13674.cpp:10:6: note: candidates are: char map [110][110]
char map[110][110];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/map:61:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:80,
from 0_0_29615266_13674.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_map.h:96:11: note: template<class _Key, class _Tp, class _Compare, class _Alloc> class std::map
class map
^
0_0_29615266_13674.cpp:48:9: error: reference to 'map' is ambiguous
map[xx][yy] = '.'; //这里再变成'.',是为了不影响其他的递归过程,因为其他路线可能还要从这里过
^
0_0_29615266_13674.cpp:10:6: note: candidates are: char map [110][110]
char map[110][110];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/map:61:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:80,
from 0_0_29615266_13674.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_map.h:96:11: note: template<class _Key, class _Tp, class _Compare, class _Alloc> class std::map
class map
^
0_0_29615266_13674.cpp: In function 'int main()':
0_0_29615266_13674.cpp:63:31: error: reference to 'map' is ambiguous
scanf(" %c", &map[i][j]);
^
0_0_29615266_13674.cpp:10:6: note: candidates are: char map [110][110]
char map[110][110];
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/map:61:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/x86_64-w64-mingw32/bits/stdc++.h:80,
from 0_0_29615266_13674.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_map.h:96:11: note: template<class _Key, class _Tp, class _Compare, class _Alloc> class std::map
class map
^
|