摘要: link class Solution { public: int getMaxRepetitions(string s1, int n1, string s2, int n2) { int len2=s2.size(); int len1=s1.size(); vector<int> next(l 阅读全文
posted @ 2020-04-19 22:51 feibilun 阅读(95) 评论(0) 推荐(0)
摘要: link class Solution { public: int findMinFibonacciNumbers(int k) { vector<int> fibo; fibo.push_back(1); fibo.push_back(1); while(true){ int i=fibo[fib 阅读全文
posted @ 2020-04-19 17:28 feibilun 阅读(225) 评论(0) 推荐(0)