算法题
wjc666
这个作者很懒,什么都没留下…
展开
-
动态规划详解(转载)
告别动态规划,连刷 40 道题,我总结了这些套路,看不懂你打我(万字长文) - 帅地的文章 - 知乎https://zhuanlan.zhihu.com/p/91582909原创 2020-09-30 20:02:22 · 131 阅读 · 0 评论 -
c++图染色算法笔记
C++ 字符串的分割函数split 及 用法@TOC之前在C#中总用到字符串的分割,使用系统函数即可,比如:string a = “This is a test”;## c++算法笔记string[] strArray = a.Split(’ ');在C++中string没有直接的分割函数,可以利用C的stroke函数封装一个分割方法:vector split(const string& str, const string& delim) {vector res;if("" =原创 2020-09-30 19:34:25 · 1059 阅读 · 0 评论