F.A.Q
Hand In Hand
Online Acmers
Problem Archive
Realtime Judge Status
Authors Ranklist
 
     C/C++/Java Exams     
ACM Steps
Go to Job
Contest LiveCast
ICPC@China
Best Coder beta
VIP | STD Contests
    DIY | Web-DIY beta
Author ID 
Password 
 Register new ID

View Compilation Error

0_0_21817659_14784.cpp: In function 'void getNext(char*)':
0_0_21817659_14784.cpp:37:32: error: 'strlen' was not declared in this scope
  int i=0,j=-1,pLen = strlen(src);
                                ^
0_0_21817659_14784.cpp:38:2: error: reference to 'next' is ambiguous
  next[0]=-1;
  ^
0_0_21817659_14784.cpp:34:5: note: candidates are: int next [10005]
 int next[10005];
     ^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:66:0,
                 from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39,
                 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_21817659_14784.cpp:10:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_iterator_base_funcs.h:184:5: note:                 template<class _ForwardIterator> _ForwardIterator std::next(_ForwardIterator, typename std::iterator_traits<_Iter>::difference_type)
     next(_ForwardIterator __x, typename
     ^
0_0_21817659_14784.cpp:44:4: error: reference to 'next' is ambiguous
    next[i]=j;
    ^
0_0_21817659_14784.cpp:34:5: note: candidates are: int next [10005]
 int next[10005];
     ^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:66:0,
                 from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39,
                 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_21817659_14784.cpp:10:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_iterator_base_funcs.h:184:5: note:                 template<class _ForwardIterator> _ForwardIterator std::next(_ForwardIterator, typename std::iterator_traits<_Iter>::difference_type)
     next(_ForwardIterator __x, typename
     ^
0_0_21817659_14784.cpp:48:6: error: reference to 'next' is ambiguous
    j=next[j];
      ^
0_0_21817659_14784.cpp:34:5: note: candidates are: int next [10005]
 int next[10005];
     ^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:66:0,
                 from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39,
                 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_21817659_14784.cpp:10:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_iterator_base_funcs.h:184:5: note:                 template<class _ForwardIterator> _ForwardIterator std::next(_ForwardIterator, typename std::iterator_traits<_Iter>::difference_type)
     next(_ForwardIterator __x, typename
     ^
0_0_21817659_14784.cpp: In function 'int KMP(char*, char*)':
0_0_21817659_14784.cpp:54:31: error: 'strlen' was not declared in this scope
  int i=0, j=0, sLen=strlen(str), pLen=strlen(pattern);
                               ^
0_0_21817659_14784.cpp:56:25: error: 'pLen' was not declared in this scope
  while (i < sLen && j < pLen)
                         ^
0_0_21817659_14784.cpp:65:6: error: reference to 'next' is ambiguous
    j=next[j];
      ^
0_0_21817659_14784.cpp:34:5: note: candidates are: int next [10005]
 int next[10005];
     ^
In file included from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_algobase.h:66:0,
                 from GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/char_traits.h:39,
                 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_21817659_14784.cpp:10:
GCC4.9.2/x86_64-w64-mingw32/include/c++/bits/stl_iterator_base_funcs.h:184:5: note:                 template<class _ForwardIterator> _ForwardIterator std::next(_ForwardIterator, typename std::iterator_traits<_Iter>::difference_type)
     next(_ForwardIterator __x, typename
     ^
0_0_21817659_14784.cpp:68:11: error: 'pLen' was not declared in this scope
  if (j == pLen)
           ^
0_0_21817659_14784.cpp: In function 'void format(char*)':
0_0_21817659_14784.cpp:76:30: error: 'strlen' was not declared in this scope
  int i=0,j,len=0,n=strlen(dst);
                              ^
0_0_21817659_14784.cpp:77:12: error: 'strlwr' was not declared in this scope
  strlwr(dst);
            ^
0_0_21817659_14784.cpp: In function 'int main()':
0_0_21817659_14784.cpp:110:36: error: 'strcpy' was not declared in this scope
    strcpy(text[i].low,text[i].title);
                                    ^


Hangzhou Dianzi University Online Judge 3.0
Copyright © 2005-2024 HDU ACM Team. All Rights Reserved.
Designer & Developer : Wang Rongtao LinLe GaoJie GanLu
Total 0.000000(s) query 1, Server time : 2024-12-03 18:04:23, Gzip enabled