0_0_29251393_2921.cpp: In function 'int main()':
0_0_29251393_2921.cpp:23:16: error: reference to 'max' is ambiguous
map[i][j]=max;
^
0_0_29251393_2921.cpp:5:5: note: candidates are: int max
int max=99999;
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39,
from 0_0_29251393_2921.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:261:5: note: template<class _Tp, class _Compare> const _Tp& std::max(const _Tp&, const _Tp&, _Compare)
max(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:217:5: note: template<class _Tp> const _Tp& std::max(const _Tp&, const _Tp&)
max(const _Tp& __a, const _Tp& __b)
^
0_0_29251393_2921.cpp:37:12: error: reference to 'max' is ambiguous
int min=max,next=1;//next表示下一个扩展结点
^
0_0_29251393_2921.cpp:5:5: note: candidates are: int max
int max=99999;
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39,
from 0_0_29251393_2921.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:261:5: note: template<class _Tp, class _Compare> const _Tp& std::max(const _Tp&, const _Tp&, _Compare)
max(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:217:5: note: template<class _Tp> const _Tp& std::max(const _Tp&, const _Tp&)
max(const _Tp& __a, const _Tp& __b)
^
0_0_29251393_2921.cpp:43:10: error: overloaded function with no contextual type information
next=j;
^
0_0_29251393_2921.cpp:46:14: error: invalid types 'int [105][<unresolved overloaded function type>]' for array subscript
visit[next]=1;
^
0_0_29251393_2921.cpp:48:16: error: invalid types 'int [105][105][<unresolved overloaded function type>]' for array subscript
if(map[next][j]<max)
^
0_0_29251393_2921.cpp:48:21: error: reference to 'max' is ambiguous
if(map[next][j]<max)
^
0_0_29251393_2921.cpp:5:5: note: candidates are: int max
int max=99999;
^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39:0,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ios:40,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/ostream:38,
from GCC4.9.2/x86_64-w64-mingw32/include/c++/iostream:39,
from 0_0_29251393_2921.cpp:1:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:261:5: note: template<class _Tp, class _Compare> const _Tp& std::max(const _Tp&, const _Tp&, _Compare)
max(const _Tp& __a, const _Tp& __b, _Compare __comp)
^
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:217:5: note: template<class _Tp> const _Tp& std::max(const _Tp&, const _Tp&)
max(const _Tp& __a, const _Tp& __b)
^
0_0_29251393_2921.cpp:49:24: error: invalid types 'int [105][<unresolved overloaded function type>]' for array subscript
if(dis[j]>dis[next]+map[next][j])
^
0_0_29251393_2921.cpp:49:34: error: invalid types 'int [105][105][<unresolved overloaded function type>]' for array subscript
if(dis[j]>dis[next]+map[next][j])
^
0_0_29251393_2921.cpp:50:23: error: invalid types 'int [105][<unresolved overloaded function type>]' for array subscript
dis[j]=dis[next]+map[next][j];
^
0_0_29251393_2921.cpp:50:33: error: invalid types 'int [105][105][<unresolved overloaded function type>]' for array subscript
dis[j]=dis[next]+map[next][j];
^
0_0_29251393_2921.cpp:52:21: error: 'n' was not declared in this scope
printf("%d\n",dis[n]);
^
|