记录详情

Compile Error

/in/foo.cc:51:20: error: stray '\357' in program
      string target ;
                    ^
/in/foo.cc:51:21: error: stray '\274' in program
      string target ;
                     ^
/in/foo.cc:51:22: error: stray '\233' in program
      string target ;
                      ^
/in/foo.cc: In function 'void getNext(std::__cxx11::string)':
/in/foo.cc:9:6: error: reference to 'next' is ambiguous
      next[0] = -1;
      ^~~~
/in/foo.cc:5:6: note: candidates are: int next [100]
  int next[MAX] = {0};
      ^~~~
In file included from /usr/include/c++/6/bits/stl_algobase.h:66:0,
                 from /usr/include/c++/6/bits/char_traits.h:39,
                 from /usr/include/c++/6/ios:40,
                 from /usr/include/c++/6/ostream:38,
                 from /usr/include/c++/6/iostream:39,
                 from /in/foo.cc:1:
/usr/include/c++/6/bits/stl_iterator_base_funcs.h:205:5: note:                 template<class _ForwardIterator> _ForwardIterator std::next(_ForwardIterator, typename std::iterator_traits<_Iter>::difference_type)
     next(_ForwardIterator __x, typename
     ^~~~
/in/foo.cc:14:14: error: reference to 'next' is ambiguous
              next[j] = k;
              ^~~~
/in/foo.cc:5:6: note: candidates are: int next [100]
  int next[MAX] = {0};
      ^~~~
In file included from /usr/include/c++/6/bits/stl_algobase.h:66:0,
                 from /usr/include/c++/6/bits/char_traits.h:39,
                 from /usr/include/c++/6/ios:40,
                 from /usr/include/c++/6/ostream:38,
                 from /usr/include/c++/6/iostream:39,
                 from /in/foo.cc:1:
/usr/include/c++/6/bits/stl_iterator_base_funcs.h:205:5: note:                 template<class _ForwardIterator> _ForwardIterator std::next(_ForwardIterator, typename std::iterator_traits<_Iter>::difference_type)
     next(_ForwardIterator __x, typename
     ^~~~
/in/foo.cc:16:18: error: reference to 'next' is ambiguous
              k = next[k];
                  ^~~~
/in/foo.cc:5:6: note: candidates are: int next [100]
  int next[MAX] = {0};
      ^~~~
In file included from /usr/include/c++/6/bits/stl_algobase.h:66:0,
                 from /usr/include/c++/6/bits/char_traits.h:39,
                 from /usr/include/c++/6/ios:40,
                 from /usr/include/c++/6/ostream:38,
                 from /usr/include/c++/6/iostream:39,
                 from /in/foo.cc:1:
/usr/include/c++/6/bits/stl_iterator_base_funcs.h:205:5: note:                 template<class _ForwardIterator> _ForwardIterator std::next(_ForwardIterator, typename std::iterator_traits<_Iter>::difference_type)
     next(_ForwardIterator __x, typename
     ^~~~
/in/foo.cc: In function 'int kmpMatch(std::__cxx11::string, std::__cxx11::string, int)':
/in/foo.cc:31:18: error: reference to 'next' is ambiguous
              j = next[j]; // 如果出现部分不匹配,获取跳过的位置
                  ^~~~
/in/foo.cc:5:6: note: candidates are: int next [100]
  int next[MAX] = {0};
      ^~~~
In file included from /usr/include/c++/6/bits/stl_algobase.h:66:0,
                 from /usr/include/c++/6/bits/char_traits.h:39,
                 from /usr/include/c++/6/ios:40,
                 from /usr/include/c++/6/ostream:38,
                 from /usr/include/c++/6/iostream:39,
                 from /in/foo.cc:1:
/usr/include/c++/6/bits/stl_iterator_base_funcs.h:205:5: note:                 template<class _ForwardIterator> _ForwardIterator std::next(_ForwardIterator, typename std::iterator_traits<_Iter>::difference_type)
     next(_ForwardIterator __x, typename
     ^~~~
/in/foo.cc: In function 'int main()':
/in/foo.cc:52:2: error: expected initializer before 'cin'
  cin>>target;
  ^~~
/in/foo.cc:55:26: error: 'target' was not declared in this scope
     int index = kmpMatch(target, pattern,0);
                          ^~~~~~

信息

递交者
类型
自测
语言
C++
递交时间
2020-07-29 22:30:25
评测时间
2020-07-29 22:30:25
评测机
分数
0
总耗时
0ms
峰值内存
0 Bytes