C++
ryunin
这个作者很懒,什么都没留下…
展开
-
no matching function for call to 'sort(...),错误
转载自:https://blog.csdn.net/vintionnee/article/details/19400663 no matching function for call to 'sort(std::vectorSolution::Node::iterator sort(,.,., cmp); 当时确信代码正确, 类型更是比对好久, 总是提示这个错误. 后来才发现, cmp函数要定义在...转载 2019-04-26 14:12:44 · 11413 阅读 · 0 评论 -
KMP——最长公共前后缀数组
#include <iostream> #include <vector> #include <string> class Solution{ public: std::vector<int> getIndexofMax(std::string &input) { std::vector<int> result; ...原创 2019-06-10 17:58:17 · 653 阅读 · 0 评论 -
KMP算法
#include <iostream> #include <vector> #include <string> class Solution{ public: std::vector<int> getIndexofMax(std::string &input) { std::vector<int> result; ...原创 2019-06-10 23:03:41 · 141 阅读 · 0 评论