- 论坛徽章:
- 5
|
- template<class char_type,class size_type>
- struct hash_LNPS_default
- {
- size_type operator()(char_type value)const{
- return value-char_type('a');
- }
- };
- template<typename char_type,typename size_type,typename hash_type >
- size_type LongestNPS(char_type *str_base,size_type size,hash_type hash=hash_LNPS_default<char_type,size_type>() )
- {
- ...
- }
- size_t max=LongestNPS(str,strlen(str);
复制代码 error C2783: 'size_type LongestNPS(char_type *,size_type,hash_type)' : could not deduce template argument for 'hash_type' |
|